From 75218909c3773369b6e44bcb196c576423e007dd Mon Sep 17 00:00:00 2001
From: q1zhen <142765265+q1zhen@users.noreply.github.com>
Date: Tue, 31 Dec 2024 15:54:27 +0800
Subject: [PATCH] feat: file upload portal (#668)
* chore(script): .env file updating script
* chore(sync): i am back home
* chore(sync): switching container
* chore(sync): i am back home
* chore(sync): today's work so far
* chore(sync): adopted fix by twc
* feat: file upload mostly finished (TODO: http error handling)
* feat: using new sidebar
* fix: moved bucket into .env
* feat: changeset
---
.changeset/plenty-sheep-live.md | 5 +
app/components/custom/club-file-upload.vue | 189 ++
app/components/custom/sidebar.vue | 4 +
app/components/ui/input/Input.vue | 10 +-
app/components/ui/input/index.ts | 2 +-
app/pages/forms/files.vue | 89 +
.../20241226133450_file_upload/migration.sql | 52 +
.../migration.sql | 5 +
db/migrations/migration_lock.toml | 2 +-
db/schema.prisma | 162 +-
nuxt.config.ts | 12 +
package.json | 1 +
pnpm-lock.yaml | 2701 +++++++++++++++--
renew-env.sh | 2 +
server/api/files/clubRecords.post.ts | 26 +
server/api/files/collections.get.ts | 18 +
server/api/files/download.post.ts | 26 +
server/api/files/newRecord.post.ts | 116 +
18 files changed, 3037 insertions(+), 385 deletions(-)
create mode 100644 .changeset/plenty-sheep-live.md
create mode 100644 app/components/custom/club-file-upload.vue
create mode 100644 app/pages/forms/files.vue
create mode 100644 db/migrations/20241226133450_file_upload/migration.sql
create mode 100644 db/migrations/20241228072009_fix_relation_files/migration.sql
create mode 100644 renew-env.sh
create mode 100644 server/api/files/clubRecords.post.ts
create mode 100644 server/api/files/collections.get.ts
create mode 100644 server/api/files/download.post.ts
create mode 100644 server/api/files/newRecord.post.ts
diff --git a/.changeset/plenty-sheep-live.md b/.changeset/plenty-sheep-live.md
new file mode 100644
index 00000000..2f6638d1
--- /dev/null
+++ b/.changeset/plenty-sheep-live.md
@@ -0,0 +1,5 @@
+---
+"enspire": minor
+---
+
+Added club file uploading portal
diff --git a/app/components/custom/club-file-upload.vue b/app/components/custom/club-file-upload.vue
new file mode 100644
index 00000000..992030dd
--- /dev/null
+++ b/app/components/custom/club-file-upload.vue
@@ -0,0 +1,189 @@
+
+
+
+
+
+ {{ title }}
+
+
+
+
+
+
+ {{ msg }}
+
+ Download
+
+
diff --git a/app/components/custom/sidebar.vue b/app/components/custom/sidebar.vue
index cff19e29..66bea75b 100644
--- a/app/components/custom/sidebar.vue
+++ b/app/components/custom/sidebar.vue
@@ -71,6 +71,10 @@ const sidebarData = ref({
},
...(isPresidentOrVicePresident.value
? [
+ {
+ title: '社团文件',
+ url: '/forms/files',
+ },
{
title: '活动记录',
url: '#',
diff --git a/app/components/ui/input/Input.vue b/app/components/ui/input/Input.vue
index a0e7654e..e90e7561 100644
--- a/app/components/ui/input/Input.vue
+++ b/app/components/ui/input/Input.vue
@@ -1,7 +1,7 @@
-
+
+
+
diff --git a/app/components/ui/input/index.ts b/app/components/ui/input/index.ts
index 589a8d79..a691dd6c 100644
--- a/app/components/ui/input/index.ts
+++ b/app/components/ui/input/index.ts
@@ -1 +1 @@
-export { default as Input } from '@/components/ui/input/Input.vue'
+export { default as Input } from './Input.vue'
diff --git a/app/pages/forms/files.vue b/app/pages/forms/files.vue
new file mode 100644
index 00000000..4b5f3f8e
--- /dev/null
+++ b/app/pages/forms/files.vue
@@ -0,0 +1,89 @@
+
+
+
+
+
+ loading
+
+
+
+
+
+
diff --git a/db/migrations/20241226133450_file_upload/migration.sql b/db/migrations/20241226133450_file_upload/migration.sql
new file mode 100644
index 00000000..27395bc7
--- /dev/null
+++ b/db/migrations/20241226133450_file_upload/migration.sql
@@ -0,0 +1,52 @@
+-- CreateEnum
+CREATE TYPE "FormStatus" AS ENUM ('OPEN', 'CLOSED');
+
+-- CreateTable
+CREATE TABLE "File" (
+ "id" TEXT NOT NULL DEFAULT gen_random_uuid(),
+ "name" TEXT NOT NULL,
+ "fileId" TEXT NOT NULL,
+ "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
+
+ CONSTRAINT "File_pkey" PRIMARY KEY ("id")
+);
+
+-- CreateTable
+CREATE TABLE "FileUploadRecord" (
+ "id" TEXT NOT NULL DEFAULT gen_random_uuid(),
+ "clubId" INTEGER NOT NULL,
+ "fileId" TEXT NOT NULL,
+ "fileUploadId" TEXT NOT NULL,
+ "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP,
+
+ CONSTRAINT "FileUploadRecord_pkey" PRIMARY KEY ("id")
+);
+
+-- CreateTable
+CREATE TABLE "FileUpload" (
+ "id" TEXT NOT NULL DEFAULT gen_random_uuid(),
+ "name" TEXT NOT NULL,
+ "status" "FormStatus" NOT NULL,
+ "fileNaming" TEXT NOT NULL,
+ "fileTypes" TEXT[],
+
+ CONSTRAINT "FileUpload_pkey" PRIMARY KEY ("id")
+);
+
+-- CreateIndex
+CREATE UNIQUE INDEX "FileUploadRecord_clubId_key" ON "FileUploadRecord"("clubId");
+
+-- CreateIndex
+CREATE UNIQUE INDEX "FileUploadRecord_fileId_key" ON "FileUploadRecord"("fileId");
+
+-- CreateIndex
+CREATE UNIQUE INDEX "FileUploadRecord_fileUploadId_key" ON "FileUploadRecord"("fileUploadId");
+
+-- AddForeignKey
+ALTER TABLE "FileUploadRecord" ADD CONSTRAINT "FileUploadRecord_clubId_fkey" FOREIGN KEY ("clubId") REFERENCES "Club"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
+
+-- AddForeignKey
+ALTER TABLE "FileUploadRecord" ADD CONSTRAINT "FileUploadRecord_fileId_fkey" FOREIGN KEY ("fileId") REFERENCES "File"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
+
+-- AddForeignKey
+ALTER TABLE "FileUploadRecord" ADD CONSTRAINT "FileUploadRecord_fileUploadId_fkey" FOREIGN KEY ("fileUploadId") REFERENCES "FileUpload"("id") ON DELETE RESTRICT ON UPDATE CASCADE;
diff --git a/db/migrations/20241228072009_fix_relation_files/migration.sql b/db/migrations/20241228072009_fix_relation_files/migration.sql
new file mode 100644
index 00000000..324b7f1e
--- /dev/null
+++ b/db/migrations/20241228072009_fix_relation_files/migration.sql
@@ -0,0 +1,5 @@
+-- DropIndex
+DROP INDEX "FileUploadRecord_clubId_key";
+
+-- DropIndex
+DROP INDEX "FileUploadRecord_fileUploadId_key";
diff --git a/db/migrations/migration_lock.toml b/db/migrations/migration_lock.toml
index fbffa92c..648c57fd 100644
--- a/db/migrations/migration_lock.toml
+++ b/db/migrations/migration_lock.toml
@@ -1,3 +1,3 @@
# Please do not edit this file manually
-# It should be added in your version-control system (i.e. Git)
+# It should be added in your version-control system (e.g., Git)
provider = "postgresql"
\ No newline at end of file
diff --git a/db/schema.prisma b/db/schema.prisma
index 2bf62e3b..a9f2c7d6 100644
--- a/db/schema.prisma
+++ b/db/schema.prisma
@@ -17,91 +17,96 @@ model User {
ReservationRecord ReservationRecord[]
}
-// -----------------------------------------
-// ------------------CLUBS------------------
-// -----------------------------------------
-// Json types should be stored like {"zh": xxx, "en": xxx}.
-// Prisma itself doesn't validates what is in that Json, we should do it by ourselves when reading.
model Club {
id Int @id
- name Json // multilingual
+ name Json
foundedYear Int?
- // All of the members are recorded by tsimsStudentId
- // instead of a foreign key from the user schema for sake of simplicity when batch importing club infos
- presidentByTsimsStudentId Int // President. Only one.
- vicesByTsimsStudentId Int[] // Vice President
- membersByTsimsStudentId Int[] // Members
- description Json // multilingual
+ presidentByTsimsStudentId Int
+ vicesByTsimsStudentId Int[]
+ membersByTsimsStudentId Int[]
+ description Json
ActivityRecord ActivityRecord[]
- ClubRating ClubRating[]
- GroupInfo GroupInfo[]
memberships ClubMembership[]
+ ClubRating ClubRating[]
+ FileUploadRecord FileUploadRecord[]
+ GroupInfo GroupInfo?
ReservationRecord ReservationRecord[]
}
-enum ClubMemberRole {
- PRESIDENT
- VICE_PRESIDENT
- MEMBER
-}
-
model ClubMembership {
- id String @id @default(dbgenerated("gen_random_uuid()"))
+ id String @id @default(dbgenerated("gen_random_uuid()"))
tsimsStudentId Int
name String
clubId Int
role ClubMemberRole
-
club Club @relation(fields: [clubId], references: [id])
- ActivityRecord ActivityRecord[]
+ ActivityRecord ActivityRecord[] @relation("ActivityRecordToClubMembership")
+
+ @@unique([tsimsStudentId, clubId])
+}
+
+model File {
+ id String @id @default(dbgenerated("gen_random_uuid()"))
+ name String
+ fileId String
+ createdAt DateTime @default(now())
+ FileUploadRecord FileUploadRecord?
+}
+
+model FileUploadRecord {
+ id String @id @default(dbgenerated("gen_random_uuid()"))
+ clubId Int
+ fileId String @unique
+ fileUploadId String
+ createdAt DateTime @default(now())
+ club Club @relation(fields: [clubId], references: [id])
+ file File @relation(fields: [fileId], references: [id])
+ fileUpload FileCollection @relation(fields: [fileUploadId], references: [id])
+}
+
+model FileCollection {
+ id String @id @default(dbgenerated("gen_random_uuid()"))
+ name String
+ status FormStatus
+ fileNaming String
+ fileTypes String[]
+ FileUploadRecord FileUploadRecord[]
- @@unique([tsimsStudentId, clubId]) // Ensure unique membership per club
+ @@map("FileUpload")
}
-// -----------------------------------------
-// ---------------ACTIVITY RECORDS------------
-// -----------------------------------------
-//
model ActivityRecord {
- id String @id @default(dbgenerated("gen_random_uuid()"))
- clubId Int // Link to Club model
- date DateTime // Start date of the leave
- text String
- cTime Float @default(0)
- aTime Float @default(0)
- sTime Float @default(0)
-
- // Relations
+ id String @id @default(dbgenerated("gen_random_uuid()"))
+ clubId Int
+ date DateTime
+ text String
+ aTime Float @default(0)
+ cTime Float @default(0)
+ sTime Float @default(0)
club Club @relation(fields: [clubId], references: [id])
- attendees ClubMembership[]
+ attendees ClubMembership[] @relation("ActivityRecordToClubMembership")
}
model ClubRating {
id String @id @default(dbgenerated("gen_random_uuid()"))
- rateBy String // Link to User model
- clubId Int // Link to Club model
- rating Int @default(0) // 0 as initial rate lol
- comment String? // Optional comment for a rating
- ratedAt DateTime @default(now()) // I guess we don't need this as we already have `rateScope`
- rateScope String // Identifier for the current semester, required since one can only vote once in one semester; stored as , i.e., 2024a
-
- // Relations
- user User @relation(fields: [rateBy], references: [clerkUserId])
- club Club @relation(fields: [clubId], references: [id])
-
- @@unique([clubId, rateBy, rateScope]) // One student can vote only once in one semester
+ rateBy String
+ clubId Int
+ rating Int @default(0)
+ comment String?
+ ratedAt DateTime @default(now())
+ rateScope String
+ club Club @relation(fields: [clubId], references: [id])
+ user User @relation(fields: [rateBy], references: [clerkUserId])
+
+ @@unique([clubId, rateBy, rateScope])
}
model GroupInfo {
id String @id @default(dbgenerated("gen_random_uuid()"))
- clubId Int // Link to Club model
+ clubId Int @unique
wechatGroupUrl String
wechatGroupExpiration DateTime @default(now())
-
- // Relations
- club Club @relation(fields: [clubId], references: [id])
-
- @@unique([clubId])
+ club Club @relation(fields: [clubId], references: [id])
}
model ClassroomData {
@@ -112,6 +117,34 @@ model ClassroomData {
ReservationRecord ReservationRecord[]
}
+model ReservationRecord {
+ id String @id @default(dbgenerated("gen_random_uuid()"))
+ creationTimestamp DateTime @default(now())
+ userId String
+ day Days
+ period Periods
+ classroomId String
+ clubId Int
+ note String?
+ classroom ClassroomData @relation(fields: [classroomId], references: [id])
+ club Club @relation(fields: [clubId], references: [id])
+ user User @relation(fields: [userId], references: [id])
+
+ @@unique([classroomId, day, period])
+ @@unique([clubId, day, period])
+}
+
+enum FormStatus {
+ OPEN
+ CLOSED
+}
+
+enum ClubMemberRole {
+ PRESIDENT
+ VICE_PRESIDENT
+ MEMBER
+}
+
enum Days {
SUNDAY
MONDAY
@@ -136,20 +169,3 @@ enum Periods {
NINE
AFTERCLASS
}
-
-model ReservationRecord {
- id String @id @default(dbgenerated("gen_random_uuid()"))
- creationTimestamp DateTime @default(now())
- user User @relation(fields: [userId], references: [id])
- userId String
- day Days
- period Periods
- classroom ClassroomData @relation(fields: [classroomId], references: [id])
- classroomId String
- club Club @relation(fields: [clubId], references: [id])
- clubId Int
- note String?
-
- @@unique([classroomId, day, period])
- @@unique([clubId, day, period])
-}
diff --git a/nuxt.config.ts b/nuxt.config.ts
index e3567683..0074af30 100644
--- a/nuxt.config.ts
+++ b/nuxt.config.ts
@@ -13,6 +13,14 @@ export default defineNuxtConfig({
dir: '/data',
repo: 'computerization/enspire',
},
+ s3: {
+ driver: 's3',
+ endpoint: process.env.S3_ENDPOINT,
+ accessKeyId: process.env.S3_ACCESS_KEY_ID,
+ secretAccessKey: process.env.S3_SECRET_ACCESS_KEY,
+ bucket: process.env.S3_BUCKET,
+ region: 'ap-northeast-1',
+ },
},
},
@@ -93,4 +101,8 @@ export default defineNuxtConfig({
future: {
compatibilityVersion: 4,
},
+
+ devtools: {
+ enabled: true,
+ },
})
diff --git a/package.json b/package.json
index ec8a5b9a..4704a9c7 100644
--- a/package.json
+++ b/package.json
@@ -36,6 +36,7 @@
"@vee-validate/zod": "^4.15.0",
"@vite-pwa/nuxt": "^0.10.6",
"@vueuse/core": "^12.2.0",
+ "aws4fetch": "^1.0.20",
"class-variance-authority": "^0.7.1",
"clsx": "^2.1.1",
"dayjs": "^1.11.13",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 41ec9fe0..5c9e89a8 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -9,13 +9,13 @@ importers:
.:
dependencies:
'@changesets/cli':
- specifier: ^2.27.11
+ specifier: ^2.27.10
version: 2.27.11
'@clerk/clerk-sdk-node':
- specifier: ^5.1.4
- version: 5.1.4(react@18.3.1)
+ specifier: ^5.0.72
+ version: 5.1.4(react@19.0.0)
'@clerk/themes':
- specifier: ^2.2.3
+ specifier: ^2.1.51
version: 2.2.3
'@internationalized/date':
specifier: ^3.6.0
@@ -34,34 +34,37 @@ importers:
version: 0.0.10
'@nuxt/content':
specifier: ^2.13.4
- version: 2.13.4(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)(magicast@0.3.5)(nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1))(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))
+ version: 2.13.4(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)(magicast@0.3.5)(nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(aws4fetch@1.0.20)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1))(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))
'@radix-icons/vue':
specifier: ^1.0.0
version: 1.0.0(vue@3.5.13(typescript@5.7.2))
'@sentry/nuxt':
- specifier: ^8.47.0
- version: 8.47.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)(magicast@0.3.5)(nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1))(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))
+ specifier: ^8.42.0
+ version: 8.47.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)(magicast@0.3.5)(nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(aws4fetch@1.0.20)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1))(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))
'@tanstack/vue-query':
- specifier: ^5.62.9
+ specifier: ^5.62.8
version: 5.62.9(vue@3.5.13(typescript@5.7.2))
'@tanstack/vue-table':
specifier: ^8.20.5
version: 8.20.5(vue@3.5.13(typescript@5.7.2))
'@unovis/ts':
- specifier: ^1.5.0
+ specifier: ^1.4.5
version: 1.5.0
'@unovis/vue':
- specifier: ^1.5.0
+ specifier: ^1.4.5
version: 1.5.0(@unovis/ts@1.5.0)(vue@3.5.13(typescript@5.7.2))
'@vee-validate/zod':
- specifier: ^4.15.0
+ specifier: ^4.14.7
version: 4.15.0(vue@3.5.13(typescript@5.7.2))(zod@3.24.1)
'@vite-pwa/nuxt':
specifier: ^0.10.6
- version: 0.10.6(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(workbox-build@7.1.1)(workbox-window@7.1.0)
+ version: 0.10.6(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(workbox-build@7.3.0)(workbox-window@7.3.0)
'@vueuse/core':
specifier: ^12.2.0
version: 12.2.0(typescript@5.7.2)
+ aws4fetch:
+ specifier: ^1.0.20
+ version: 1.0.20
class-variance-authority:
specifier: ^0.7.1
version: 0.7.1
@@ -78,10 +81,10 @@ importers:
specifier: ^1.13.0
version: 1.13.0
h3-clerk:
- specifier: ^0.5.22
- version: 0.5.22(h3@1.13.0)(react@18.3.1)
+ specifier: ^0.5.15
+ version: 0.5.22(h3@1.13.0)(react@19.0.0)
import-in-the-middle:
- specifier: ^1.12.0
+ specifier: ^1.11.3
version: 1.12.0
iron-webcrypto:
specifier: ^1.2.1
@@ -93,20 +96,20 @@ importers:
specifier: ^1.4.1
version: 1.4.1
radix-vue:
- specifier: ^1.9.11
+ specifier: ^1.9.10
version: 1.9.11(vue@3.5.13(typescript@5.7.2))
sanitize-html:
- specifier: ^2.14.0
+ specifier: ^2.13.1
version: 2.14.0
tailwind-merge:
- specifier: ^2.6.0
+ specifier: ^2.5.5
version: 2.6.0
uncrypto:
specifier: ^0.1.3
version: 0.1.3
unstorage:
- specifier: ^1.14.4
- version: 1.14.4(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)
+ specifier: ^1.13.1
+ version: 1.14.3(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)
uuid:
specifier: ^11.0.3
version: 11.0.3
@@ -116,63 +119,60 @@ importers:
vaul-vue:
specifier: ^0.2.0
version: 0.2.0(radix-vue@1.9.11(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
+ version: 0.2.0(radix-vue@1.9.11(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
vee-validate:
- specifier: ^4.15.0
+ specifier: ^4.14.7
version: 4.15.0(vue@3.5.13(typescript@5.7.2))
vue-clerk:
- specifier: ^0.9.11
- version: 0.9.11(@clerk/backend@1.21.4(react@18.3.1))(react@18.3.1)(vue@3.5.13(typescript@5.7.2))
+ specifier: ^0.9.4
+ version: 0.9.11(@clerk/backend@1.21.4(react@19.0.0))(react@19.0.0)(vue@3.5.13(typescript@5.7.2))
yaml:
specifier: ^2.6.1
version: 2.6.1
zod:
- specifier: ^3.24.1
+ specifier: ^3.23.8
version: 3.24.1
devDependencies:
'@antfu/eslint-config':
- specifier: ^3.12.1
+ specifier: ^3.11.2
version: 3.12.1(@typescript-eslint/utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@unocss/eslint-plugin@0.65.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
'@changesets/changelog-github':
specifier: ^0.5.0
version: 0.5.0
'@iconify-json/charm':
- specifier: ^1.2.2
+ specifier: ^1.2.1
version: 1.2.2
- '@iconify-json/lucide':
- specifier: ^1.2.20
- version: 1.2.20
'@iconify-json/material-symbols':
- specifier: ^1.2.12
+ specifier: ^1.2.8
version: 1.2.12
'@iconify-json/ph':
- specifier: ^1.2.2
- version: 1.2.2
- '@iconify-json/svg-spinners':
- specifier: ^1.2.2
+ specifier: ^1.2.1
version: 1.2.2
'@netlify/blobs':
specifier: ^8.1.0
version: 8.1.0
'@nuxt/fonts':
- specifier: ^0.10.3
- version: 0.10.3(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))
+ specifier: ^0.10.2
+ version: 0.10.3(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))
'@nuxt/icon':
- specifier: ^1.10.3
+ specifier: ^1.9.0
version: 1.10.3(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
'@nuxt/image':
specifier: ^1.8.1
- version: 1.8.1(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)(magicast@0.3.5)(rollup@4.29.1)
+ version: 1.8.1(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)(magicast@0.3.5)(rollup@4.29.1)
'@nuxtjs/google-fonts':
specifier: ^3.2.0
version: 3.2.0(magicast@0.3.5)(rollup@4.29.1)
+ version: 3.2.0(magicast@0.3.5)(rollup@4.29.1)
'@prisma/client':
- specifier: ^6.1.0
+ specifier: ^6.0.1
version: 6.1.0(prisma@6.1.0)
'@rollup/plugin-wasm':
specifier: ^6.2.2
version: 6.2.2(rollup@4.29.1)
+ version: 6.2.2(rollup@4.29.1)
'@tanstack/eslint-plugin-query':
- specifier: ^5.62.9
+ specifier: ^5.62.1
version: 5.62.9(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
'@types/node-fetch':
specifier: ^2.6.12
@@ -189,36 +189,39 @@ importers:
'@unocss/eslint-plugin':
specifier: 0.65.1
version: 0.65.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ version: 0.65.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
'@unocss/nuxt':
specifier: 0.65.1
- version: 0.65.1(magicast@0.3.5)(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))(webpack@5.96.1(esbuild@0.24.2))
+ version: 0.65.1(magicast@0.3.5)(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))(webpack@5.97.1(esbuild@0.24.2))
'@unocss/postcss':
- specifier: ^0.65.3
+ specifier: ^0.65.1
version: 0.65.3(postcss@8.4.49)
dayjs-nuxt:
specifier: ^2.1.11
version: 2.1.11(magicast@0.3.5)(rollup@4.29.1)
+ version: 2.1.11(magicast@0.3.5)(rollup@4.29.1)
eslint:
- specifier: ^9.17.0
+ specifier: ^9.16.0
version: 9.17.0(jiti@2.4.2)
netlify:
- specifier: ^13.2.0
+ specifier: ^13.1.21
version: 13.2.0
nuxt:
- specifier: ^3.15.0
- version: 3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1)
+ specifier: ^3.14.1592
+ version: 3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(aws4fetch@1.0.20)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1)
nuxt-svgo:
- specifier: ^4.0.9
+ specifier: ^4.0.6
version: 4.0.9(magicast@0.3.5)(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))
octokit:
specifier: ^4.0.3
version: 4.0.3
prisma:
- specifier: ^6.1.0
+ specifier: ^6.0.1
version: 6.1.0
shadcn-nuxt:
specifier: ^0.10.4
version: 0.10.4(magicast@0.3.5)(rollup@4.29.1)
+ version: 0.10.4(magicast@0.3.5)(rollup@4.29.1)
tsx:
specifier: ^4.19.2
version: 4.19.2
@@ -227,13 +230,13 @@ importers:
version: 5.7.2
unocss:
specifier: 0.65.1
- version: 0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ version: 0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
unocss-preset-animations:
specifier: ^1.1.0
- version: 1.1.0(@unocss/preset-wind@0.65.1)(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)))
+ version: 1.1.0(@unocss/preset-wind@0.65.1)(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)))
unocss-preset-shadcn:
specifier: ^0.3.1
- version: 0.3.1(unocss-preset-animations@1.1.0(@unocss/preset-wind@0.65.1)(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))))(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)))
+ version: 0.3.1(unocss-preset-animations@1.1.0(@unocss/preset-wind@0.65.1)(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))))(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)))
vue:
specifier: ^3.5.13
version: 3.5.13(typescript@5.7.2)
@@ -241,7 +244,7 @@ importers:
specifier: 4.5.0
version: 4.5.0(vue@3.5.13(typescript@5.7.2))
vue-tsc:
- specifier: ^2.2.0
+ specifier: ^2.1.10
version: 2.2.0(typescript@5.7.2)
packages:
@@ -250,10 +253,13 @@ packages:
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
+ '@antfu/eslint-config@3.12.1':
+ resolution: {integrity: sha512-6sRgO4u63GK75xeZ2MfCSRT9GcfLti4ZN3Xw+bIu39oo6HY50fBY+rXnWvgwNimzHBOh3yV5xUHfTqcHq1M5AA==}
'@antfu/eslint-config@3.12.1':
resolution: {integrity: sha512-6sRgO4u63GK75xeZ2MfCSRT9GcfLti4ZN3Xw+bIu39oo6HY50fBY+rXnWvgwNimzHBOh3yV5xUHfTqcHq1M5AA==}
hasBin: true
peerDependencies:
+ '@eslint-react/eslint-plugin': ^1.19.0
'@eslint-react/eslint-plugin': ^1.19.0
'@prettier/plugin-xml': ^3.4.1
'@unocss/eslint-plugin': '>=0.50.0'
@@ -819,6 +825,8 @@ packages:
resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
engines: {node: '>=6.9.0'}
+ '@babel/standalone@7.26.4':
+ resolution: {integrity: sha512-SF+g7S2mhTT1b7CHyfNjDkPU1corxg4LPYsyP0x5KuCl+EbtBQHRLqr9N3q7e7+x7NQ5LYxQf8mJ2PmzebLr0A==}
'@babel/standalone@7.26.4':
resolution: {integrity: sha512-SF+g7S2mhTT1b7CHyfNjDkPU1corxg4LPYsyP0x5KuCl+EbtBQHRLqr9N3q7e7+x7NQ5LYxQf8mJ2PmzebLr0A==}
engines: {node: '>=6.9.0'}
@@ -827,6 +835,8 @@ packages:
resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
engines: {node: '>=6.9.0'}
+ '@babel/traverse@7.26.4':
+ resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==}
'@babel/traverse@7.26.4':
resolution: {integrity: sha512-fH+b7Y4p3yqvApJALCPJcwb0/XaOSgtK4pzV6WVjPR5GLFQBRI7pfoX2V2iM48NXvX07NUxxm1Vw98YjqTcU5w==}
engines: {node: '>=6.9.0'}
@@ -841,6 +851,8 @@ packages:
'@capsizecss/unpack@2.3.0':
resolution: {integrity: sha512-qkf9IoFIVTOkkpr8oZtCNSmubyWFCuPU4EOWO6J/rFPP5Ks2b1k1EHDSQRLwfokh6nCd7mJgBT2lhcuDCE6w4w==}
+ '@changesets/apply-release-plan@7.0.7':
+ resolution: {integrity: sha512-qnPOcmmmnD0MfMg9DjU1/onORFyRpDXkMMl2IJg9mECY6RnxL3wN0TCCc92b2sXt1jt8DgjAUUsZYGUGTdYIXA==}
'@changesets/apply-release-plan@7.0.7':
resolution: {integrity: sha512-qnPOcmmmnD0MfMg9DjU1/onORFyRpDXkMMl2IJg9mECY6RnxL3wN0TCCc92b2sXt1jt8DgjAUUsZYGUGTdYIXA==}
@@ -853,10 +865,14 @@ packages:
'@changesets/changelog-github@0.5.0':
resolution: {integrity: sha512-zoeq2LJJVcPJcIotHRJEEA2qCqX0AQIeFE+L21L8sRLPVqDhSXY8ZWAt2sohtBpFZkBwu+LUwMSKRr2lMy3LJA==}
+ '@changesets/cli@2.27.11':
+ resolution: {integrity: sha512-1QislpE+nvJgSZZo9+Lj3Lno5pKBgN46dAV8IVxKJy9wX8AOrs9nn5pYVZuDpoxWJJCALmbfOsHkyxujgetQSg==}
'@changesets/cli@2.27.11':
resolution: {integrity: sha512-1QislpE+nvJgSZZo9+Lj3Lno5pKBgN46dAV8IVxKJy9wX8AOrs9nn5pYVZuDpoxWJJCALmbfOsHkyxujgetQSg==}
hasBin: true
+ '@changesets/config@3.0.5':
+ resolution: {integrity: sha512-QyXLSSd10GquX7hY0Mt4yQFMEeqnO5z/XLpbIr4PAkNNoQNKwDyiSrx4yd749WddusH1v3OSiA0NRAYmH/APpQ==}
'@changesets/config@3.0.5':
resolution: {integrity: sha512-QyXLSSd10GquX7hY0Mt4yQFMEeqnO5z/XLpbIr4PAkNNoQNKwDyiSrx4yd749WddusH1v3OSiA0NRAYmH/APpQ==}
@@ -869,6 +885,8 @@ packages:
'@changesets/get-github-info@0.6.0':
resolution: {integrity: sha512-v/TSnFVXI8vzX9/w3DU2Ol+UlTZcu3m0kXTjTT4KlAdwSvwutcByYwyYn9hwerPWfPkT2JfpoX0KgvCEi8Q/SA==}
+ '@changesets/get-release-plan@4.0.6':
+ resolution: {integrity: sha512-FHRwBkY7Eili04Y5YMOZb0ezQzKikTka4wL753vfUA5COSebt7KThqiuCN9BewE4/qFGgF/5t3AuzXx1/UAY4w==}
'@changesets/get-release-plan@4.0.6':
resolution: {integrity: sha512-FHRwBkY7Eili04Y5YMOZb0ezQzKikTka4wL753vfUA5COSebt7KThqiuCN9BewE4/qFGgF/5t3AuzXx1/UAY4w==}
@@ -902,36 +920,52 @@ packages:
'@changesets/write@0.3.2':
resolution: {integrity: sha512-kDxDrPNpUgsjDbWBvUo27PzKX4gqeKOlhibaOXDJA6kuBisGqNHv/HwGJrAu8U/dSf8ZEFIeHIPtvSlZI1kULw==}
+ '@clack/core@0.4.0':
+ resolution: {integrity: sha512-YJCYBsyJfNDaTbvDUVSJ3SgSuPrcujarRgkJ5NLjexDZKvaOiVVJvAQYx8lIgG0qRT8ff0fPgqyBCVivanIZ+A==}
'@clack/core@0.4.0':
resolution: {integrity: sha512-YJCYBsyJfNDaTbvDUVSJ3SgSuPrcujarRgkJ5NLjexDZKvaOiVVJvAQYx8lIgG0qRT8ff0fPgqyBCVivanIZ+A==}
+ '@clack/prompts@0.9.0':
+ resolution: {integrity: sha512-nGsytiExgUr4FL0pR/LeqxA28nz3E0cW7eLTSh3Iod9TGrbBt8Y7BHbV3mmkNC4G0evdYyQ3ZsbiBkk7ektArA==}
'@clack/prompts@0.9.0':
resolution: {integrity: sha512-nGsytiExgUr4FL0pR/LeqxA28nz3E0cW7eLTSh3Iod9TGrbBt8Y7BHbV3mmkNC4G0evdYyQ3ZsbiBkk7ektArA==}
+ '@clerk/backend@1.21.4':
+ resolution: {integrity: sha512-PHJzBJrTxBAvHwscXwUwpippT7nHhphgycVcFb3655Dq6q0nRdKfo5GlkDHscEKxLOdmppB/168nXsVwSWf86w==}
'@clerk/backend@1.21.4':
resolution: {integrity: sha512-PHJzBJrTxBAvHwscXwUwpippT7nHhphgycVcFb3655Dq6q0nRdKfo5GlkDHscEKxLOdmppB/168nXsVwSWf86w==}
engines: {node: '>=18.17.0'}
+ '@clerk/clerk-sdk-node@5.1.4':
+ resolution: {integrity: sha512-ZpY4EnBQhWmGCZuc6tUEYDifhK31ZvAZbli7/s7Bnqv7DNib5vTUbStNiDcA+45NrZ9ID5qr0J3S85V8GmFw3A==}
'@clerk/clerk-sdk-node@5.1.4':
resolution: {integrity: sha512-ZpY4EnBQhWmGCZuc6tUEYDifhK31ZvAZbli7/s7Bnqv7DNib5vTUbStNiDcA+45NrZ9ID5qr0J3S85V8GmFw3A==}
engines: {node: '>=18.17.0'}
+ '@clerk/shared@2.20.4':
+ resolution: {integrity: sha512-1ndGEO+NejIMFkl47DCeSpVv3nmKh9BHD6wt2Sl3X1wv7sj3eWzSVC14Exkag7D8Og2VcN4LXOFLErsCXHS+YQ==}
'@clerk/shared@2.20.4':
resolution: {integrity: sha512-1ndGEO+NejIMFkl47DCeSpVv3nmKh9BHD6wt2Sl3X1wv7sj3eWzSVC14Exkag7D8Og2VcN4LXOFLErsCXHS+YQ==}
engines: {node: '>=18.17.0'}
peerDependencies:
react: ^18.0.0 || ^19.0.0 || ^19.0.0-0
react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-0
+ react: ^18.0.0 || ^19.0.0 || ^19.0.0-0
+ react-dom: ^18.0.0 || ^19.0.0 || ^19.0.0-0
peerDependenciesMeta:
react:
optional: true
react-dom:
optional: true
+ '@clerk/themes@2.2.3':
+ resolution: {integrity: sha512-pDA5P9IUTLVKYviEtm7BgB+1rcJINDuP9F4LJ5ZH3f/6+LdG09EaVM/9nvGLnNqDJ7XvldzcKes1BpPJuGSCew==}
'@clerk/themes@2.2.3':
resolution: {integrity: sha512-pDA5P9IUTLVKYviEtm7BgB+1rcJINDuP9F4LJ5ZH3f/6+LdG09EaVM/9nvGLnNqDJ7XvldzcKes1BpPJuGSCew==}
engines: {node: '>=18.17.0'}
+ '@clerk/types@4.40.0':
+ resolution: {integrity: sha512-9QdllXYujsjYLbvPg9Kq1rWOemX5FB0r6Ijy8HOxwjKN+TPlxUnGcs+t7IwU+M5gdmZ2KV6aA6d1a2q2FlSoiA==}
'@clerk/types@4.40.0':
resolution: {integrity: sha512-9QdllXYujsjYLbvPg9Kq1rWOemX5FB0r6Ijy8HOxwjKN+TPlxUnGcs+t7IwU+M5gdmZ2KV6aA6d1a2q2FlSoiA==}
engines: {node: '>=18.17.0'}
@@ -943,6 +977,8 @@ packages:
'@emotion/babel-plugin@11.13.5':
resolution: {integrity: sha512-pxHCpT2ex+0q+HH91/zsdHkw/lXd468DIN2zvfvLtPKLLMo6gQj7oLObq8PhkrxOZb/gGCq03S3Z7PDhS8pduQ==}
+ '@emotion/cache@11.14.0':
+ resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==}
'@emotion/cache@11.14.0':
resolution: {integrity: sha512-L/B1lc/TViYk4DcpGxtAVbx0ZyiKM5ktoIyafGkH6zg/tj+mA+NE//aPYKG0k8kCHSHVJrpLpcAlOBEXQ3SavA==}
@@ -986,6 +1022,8 @@ packages:
cpu: [ppc64]
os: [aix]
+ '@esbuild/aix-ppc64@0.24.2':
+ resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
'@esbuild/aix-ppc64@0.24.2':
resolution: {integrity: sha512-thpVCb/rhxE/BnMLQ7GReQLLN8q9qbHmI55F4489/ByVg2aQaQ6kbcLb6FHkocZzQhxc4gx0sCk0tJkKBFzDhA==}
engines: {node: '>=18'}
@@ -1004,6 +1042,8 @@ packages:
cpu: [arm64]
os: [android]
+ '@esbuild/android-arm64@0.24.2':
+ resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
'@esbuild/android-arm64@0.24.2':
resolution: {integrity: sha512-cNLgeqCqV8WxfcTIOeL4OAtSmL8JjcN6m09XIgro1Wi7cF4t/THaWEa7eL5CMoMBdjoHOTh/vwTO/o2TRXIyzg==}
engines: {node: '>=18'}
@@ -1022,6 +1062,8 @@ packages:
cpu: [arm]
os: [android]
+ '@esbuild/android-arm@0.24.2':
+ resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
'@esbuild/android-arm@0.24.2':
resolution: {integrity: sha512-tmwl4hJkCfNHwFB3nBa8z1Uy3ypZpxqxfTQOcHX+xRByyYgunVbZ9MzUUfb0RxaHIMnbHagwAxuTL+tnNM+1/Q==}
engines: {node: '>=18'}
@@ -1040,6 +1082,8 @@ packages:
cpu: [x64]
os: [android]
+ '@esbuild/android-x64@0.24.2':
+ resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
'@esbuild/android-x64@0.24.2':
resolution: {integrity: sha512-B6Q0YQDqMx9D7rvIcsXfmJfvUYLoP722bgfBlO5cGvNVb5V/+Y7nhBE3mHV9OpxBf4eAS2S68KZztiPaWq4XYw==}
engines: {node: '>=18'}
@@ -1058,6 +1102,8 @@ packages:
cpu: [arm64]
os: [darwin]
+ '@esbuild/darwin-arm64@0.24.2':
+ resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
'@esbuild/darwin-arm64@0.24.2':
resolution: {integrity: sha512-kj3AnYWc+CekmZnS5IPu9D+HWtUI49hbnyqk0FLEJDbzCIQt7hg7ucF1SQAilhtYpIujfaHr6O0UHlzzSPdOeA==}
engines: {node: '>=18'}
@@ -1076,6 +1122,8 @@ packages:
cpu: [x64]
os: [darwin]
+ '@esbuild/darwin-x64@0.24.2':
+ resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
'@esbuild/darwin-x64@0.24.2':
resolution: {integrity: sha512-WeSrmwwHaPkNR5H3yYfowhZcbriGqooyu3zI/3GGpF8AyUdsrrP0X6KumITGA9WOyiJavnGZUwPGvxvwfWPHIA==}
engines: {node: '>=18'}
@@ -1094,6 +1142,8 @@ packages:
cpu: [arm64]
os: [freebsd]
+ '@esbuild/freebsd-arm64@0.24.2':
+ resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
'@esbuild/freebsd-arm64@0.24.2':
resolution: {integrity: sha512-UN8HXjtJ0k/Mj6a9+5u6+2eZ2ERD7Edt1Q9IZiB5UZAIdPnVKDoG7mdTVGhHJIeEml60JteamR3qhsr1r8gXvg==}
engines: {node: '>=18'}
@@ -1112,6 +1162,8 @@ packages:
cpu: [x64]
os: [freebsd]
+ '@esbuild/freebsd-x64@0.24.2':
+ resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
'@esbuild/freebsd-x64@0.24.2':
resolution: {integrity: sha512-TvW7wE/89PYW+IevEJXZ5sF6gJRDY/14hyIGFXdIucxCsbRmLUcjseQu1SyTko+2idmCw94TgyaEZi9HUSOe3Q==}
engines: {node: '>=18'}
@@ -1130,6 +1182,8 @@ packages:
cpu: [arm64]
os: [linux]
+ '@esbuild/linux-arm64@0.24.2':
+ resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
'@esbuild/linux-arm64@0.24.2':
resolution: {integrity: sha512-7HnAD6074BW43YvvUmE/35Id9/NB7BeX5EoNkK9obndmZBUk8xmJJeU7DwmUeN7tkysslb2eSl6CTrYz6oEMQg==}
engines: {node: '>=18'}
@@ -1148,6 +1202,8 @@ packages:
cpu: [arm]
os: [linux]
+ '@esbuild/linux-arm@0.24.2':
+ resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
'@esbuild/linux-arm@0.24.2':
resolution: {integrity: sha512-n0WRM/gWIdU29J57hJyUdIsk0WarGd6To0s+Y+LwvlC55wt+GT/OgkwoXCXvIue1i1sSNWblHEig00GBWiJgfA==}
engines: {node: '>=18'}
@@ -1166,6 +1222,8 @@ packages:
cpu: [ia32]
os: [linux]
+ '@esbuild/linux-ia32@0.24.2':
+ resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
'@esbuild/linux-ia32@0.24.2':
resolution: {integrity: sha512-sfv0tGPQhcZOgTKO3oBE9xpHuUqguHvSo4jl+wjnKwFpapx+vUDcawbwPNuBIAYdRAvIDBfZVvXprIj3HA+Ugw==}
engines: {node: '>=18'}
@@ -1184,6 +1242,8 @@ packages:
cpu: [loong64]
os: [linux]
+ '@esbuild/linux-loong64@0.24.2':
+ resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
'@esbuild/linux-loong64@0.24.2':
resolution: {integrity: sha512-CN9AZr8kEndGooS35ntToZLTQLHEjtVB5n7dl8ZcTZMonJ7CCfStrYhrzF97eAecqVbVJ7APOEe18RPI4KLhwQ==}
engines: {node: '>=18'}
@@ -1202,6 +1262,8 @@ packages:
cpu: [mips64el]
os: [linux]
+ '@esbuild/linux-mips64el@0.24.2':
+ resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
'@esbuild/linux-mips64el@0.24.2':
resolution: {integrity: sha512-iMkk7qr/wl3exJATwkISxI7kTcmHKE+BlymIAbHO8xanq/TjHaaVThFF6ipWzPHryoFsesNQJPE/3wFJw4+huw==}
engines: {node: '>=18'}
@@ -1220,6 +1282,8 @@ packages:
cpu: [ppc64]
os: [linux]
+ '@esbuild/linux-ppc64@0.24.2':
+ resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
'@esbuild/linux-ppc64@0.24.2':
resolution: {integrity: sha512-shsVrgCZ57Vr2L8mm39kO5PPIb+843FStGt7sGGoqiiWYconSxwTiuswC1VJZLCjNiMLAMh34jg4VSEQb+iEbw==}
engines: {node: '>=18'}
@@ -1238,6 +1302,8 @@ packages:
cpu: [riscv64]
os: [linux]
+ '@esbuild/linux-riscv64@0.24.2':
+ resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
'@esbuild/linux-riscv64@0.24.2':
resolution: {integrity: sha512-4eSFWnU9Hhd68fW16GD0TINewo1L6dRrB+oLNNbYyMUAeOD2yCK5KXGK1GH4qD/kT+bTEXjsyTCiJGHPZ3eM9Q==}
engines: {node: '>=18'}
@@ -1256,6 +1322,8 @@ packages:
cpu: [s390x]
os: [linux]
+ '@esbuild/linux-s390x@0.24.2':
+ resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
'@esbuild/linux-s390x@0.24.2':
resolution: {integrity: sha512-S0Bh0A53b0YHL2XEXC20bHLuGMOhFDO6GN4b3YjRLK//Ep3ql3erpNcPlEFed93hsQAjAQDNsvcK+hV90FubSw==}
engines: {node: '>=18'}
@@ -1274,6 +1342,8 @@ packages:
cpu: [x64]
os: [linux]
+ '@esbuild/linux-x64@0.24.2':
+ resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
'@esbuild/linux-x64@0.24.2':
resolution: {integrity: sha512-8Qi4nQcCTbLnK9WoMjdC9NiTG6/E38RNICU6sUNqK0QFxCYgoARqVqxdFmWkdonVsvGqWhmm7MO0jyTqLqwj0Q==}
engines: {node: '>=18'}
@@ -1286,6 +1356,12 @@ packages:
cpu: [arm64]
os: [netbsd]
+ '@esbuild/netbsd-arm64@0.24.2':
+ resolution: {integrity: sha512-wuLK/VztRRpMt9zyHSazyCVdCXlpHkKm34WUyinD2lzK07FAHTq0KQvZZlXikNWkDGoT6x3TD51jKQ7gMVpopw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.21.5':
resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
engines: {node: '>=12'}
@@ -1298,6 +1374,8 @@ packages:
cpu: [x64]
os: [netbsd]
+ '@esbuild/netbsd-x64@0.24.2':
+ resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
'@esbuild/netbsd-x64@0.24.2':
resolution: {integrity: sha512-VefFaQUc4FMmJuAxmIHgUmfNiLXY438XrL4GDNV1Y1H/RW3qow68xTwjZKfj/+Plp9NANmzbH5R40Meudu8mmw==}
engines: {node: '>=18'}
@@ -1310,6 +1388,8 @@ packages:
cpu: [arm64]
os: [openbsd]
+ '@esbuild/openbsd-arm64@0.24.2':
+ resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
'@esbuild/openbsd-arm64@0.24.2':
resolution: {integrity: sha512-YQbi46SBct6iKnszhSvdluqDmxCJA+Pu280Av9WICNwQmMxV7nLRHZfjQzwbPs3jeWnuAhE9Jy0NrnJ12Oz+0A==}
engines: {node: '>=18'}
@@ -1328,6 +1408,8 @@ packages:
cpu: [x64]
os: [openbsd]
+ '@esbuild/openbsd-x64@0.24.2':
+ resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
'@esbuild/openbsd-x64@0.24.2':
resolution: {integrity: sha512-+iDS6zpNM6EnJyWv0bMGLWSWeXGN/HTaF/LXHXHwejGsVi+ooqDfMCCTerNFxEkM3wYVcExkeGXNqshc9iMaOA==}
engines: {node: '>=18'}
@@ -1346,6 +1428,8 @@ packages:
cpu: [x64]
os: [sunos]
+ '@esbuild/sunos-x64@0.24.2':
+ resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
'@esbuild/sunos-x64@0.24.2':
resolution: {integrity: sha512-hTdsW27jcktEvpwNHJU4ZwWFGkz2zRJUz8pvddmXPtXDzVKTTINmlmga3ZzwcuMpUvLw7JkLy9QLKyGpD2Yxig==}
engines: {node: '>=18'}
@@ -1364,6 +1448,8 @@ packages:
cpu: [arm64]
os: [win32]
+ '@esbuild/win32-arm64@0.24.2':
+ resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
'@esbuild/win32-arm64@0.24.2':
resolution: {integrity: sha512-LihEQ2BBKVFLOC9ZItT9iFprsE9tqjDjnbulhHoFxYQtQfai7qfluVODIYxt1PgdoyQkz23+01rzwNwYfutxUQ==}
engines: {node: '>=18'}
@@ -1382,6 +1468,8 @@ packages:
cpu: [ia32]
os: [win32]
+ '@esbuild/win32-ia32@0.24.2':
+ resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
'@esbuild/win32-ia32@0.24.2':
resolution: {integrity: sha512-q+iGUwfs8tncmFC9pcnD5IvRHAzmbwQ3GPS5/ceCyHdjXubwQWI12MKWSNSMYLJMq23/IUCvJMS76PDqXe1fxA==}
engines: {node: '>=18'}
@@ -1400,6 +1488,8 @@ packages:
cpu: [x64]
os: [win32]
+ '@esbuild/win32-x64@0.24.2':
+ resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
'@esbuild/win32-x64@0.24.2':
resolution: {integrity: sha512-7VTgWzgMGvup6aSqDPLiW5zHaxYJGTO4OokMjIlrCtf+VpEL+cXKtCvg723iguPYI5oaUNdS+/V7OU2gvXVWEg==}
engines: {node: '>=18'}
@@ -1443,6 +1533,8 @@ packages:
resolution: {integrity: sha512-grOjVNN8P3hjJn/eIETF1wwd12DdnwFDoyceUJLYYdkpbwq3nLi+4fqrTAONx7XDALqlL220wC/RHSC/QTI/0w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@eslint/js@9.17.0':
+ resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==}
'@eslint/js@9.17.0':
resolution: {integrity: sha512-Sxc4hqcs1kTu0iID3kcZDW3JHq2a77HO9P8CP6YEA/FpH3Ll8UXE2r/86Rz9YJLKme39S9vU5OWNjC6Xl0Cr3w==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -1498,27 +1590,25 @@ packages:
'@iconify-json/charm@1.2.2':
resolution: {integrity: sha512-x4Ny1yksFDYzjgN3x4eDC0hTxxueekINMrgfi3Ohdy7wnqKyAUfBHk97v18paTYK1SqZ9/Hm9Qdjk7ljqzMvAg==}
- '@iconify-json/lucide@1.2.20':
- resolution: {integrity: sha512-m/8rqukvQfsE+MYTwNXCxP/K2iucTCGSQfS0XZhYpkZKGRdiEOdAAnd8Vv+E78xKK94Jza2eTc5ihxbw6+i7EQ==}
-
'@iconify-json/material-symbols@1.2.12':
resolution: {integrity: sha512-2p2T13Kccy7R2HNbdiVsIcHxjp4s9a+iKlfbtt29hldG1pVNaPIlMALNA9bjdEwPjwsVFe06INCbjCRc68JysQ==}
'@iconify-json/ph@1.2.2':
resolution: {integrity: sha512-PgkEZNtqa8hBGjHXQa4pMwZa93hmfu8FUSjs/nv4oUU6yLsgv+gh9nu28Kqi8Fz9CCVu4hj1MZs9/60J57IzFw==}
- '@iconify-json/svg-spinners@1.2.2':
- resolution: {integrity: sha512-DIErwfBWWzLfmAG2oQnbUOSqZhDxlXvr8941itMCrxQoMB0Hiv8Ww6Bln/zIgxwjDvSem2dKJtap+yKKwsB/2A==}
-
- '@iconify/collections@1.0.501':
- resolution: {integrity: sha512-HA/RGl1EdU3e+Ty1xDwOHG9UQQuxDSu19AP9lV9/fueOENrTY4Vz2Xit2d4xB+AJSe03bHGJUR4hRdwmmY83Zw==}
+ '@iconify/collections@1.0.500':
+ resolution: {integrity: sha512-3eYCa+FTJucSWJsv7wbvGNYguMaztTX+qx0HMdY3imh5NiTVfi+ydLHpl9dIlszVdelcIZBAtjELVaMpl2wXOw==}
'@iconify/types@2.0.0':
resolution: {integrity: sha512-+wluvCrRhXrhyOmRDJ3q8mux9JkKy5SJ/v8ol2tu4FVjyYvtEzkc/3pK15ET6RKg4b4w4BmTk1+gsCUhf21Ykg==}
+ '@iconify/utils@2.2.1':
+ resolution: {integrity: sha512-0/7J7hk4PqXmxo5PDBDxmnecw5PxklZJfNjIVG9FM0mEfVrvfudS22rYWsqVk6gR3UJ/mSYS90X4R3znXnqfNA==}
'@iconify/utils@2.2.1':
resolution: {integrity: sha512-0/7J7hk4PqXmxo5PDBDxmnecw5PxklZJfNjIVG9FM0mEfVrvfudS22rYWsqVk6gR3UJ/mSYS90X4R3znXnqfNA==}
+ '@iconify/vue@4.2.0':
+ resolution: {integrity: sha512-CMynoz9BDWugDO2B7LU/s8L99dHCiqDGCjCki6bhVx5etZhw9x0BTV7wWRdj82jtl1yQTc+QQRcHQmSvUY6R+g==}
'@iconify/vue@4.2.0':
resolution: {integrity: sha512-CMynoz9BDWugDO2B7LU/s8L99dHCiqDGCjCki6bhVx5etZhw9x0BTV7wWRdj82jtl1yQTc+QQRcHQmSvUY6R+g==}
peerDependencies:
@@ -1541,6 +1631,12 @@ packages:
resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
engines: {node: '>=18.0.0'}
+ '@jridgewell/gen-mapping@0.3.8':
+ resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
+ '@isaacs/fs-minipass@4.0.1':
+ resolution: {integrity: sha512-wgm9Ehl2jpeqP3zw/7mo3kRHFp5MEDhqAdwy1fTGkHAwnkGOVsgpvQhL8B5n1qlb01jV3n/bI0ZfZp5lWA1k4w==}
+ engines: {node: '>=18.0.0'}
+
'@jridgewell/gen-mapping@0.3.8':
resolution: {integrity: sha512-imAbBGkb+ebQyxKgzv5Hu2nmROxoDOXHh80evxdoXNOrvAnVx7zimzc1Oo5h9RlfV4vPXaE2iM5pOFbvOCClWA==}
engines: {node: '>=6.0.0'}
@@ -1588,6 +1684,9 @@ packages:
'@mapbox/mapbox-gl-supported@2.0.1':
resolution: {integrity: sha512-HP6XvfNIzfoMVfyGjBckjiAOQK9WfX0ywdLubuPMPv+Vqf5fj0uCbgBQYpiqcWZT6cbyyRnTSXDheT1ugvF6UQ==}
+ '@mapbox/node-pre-gyp@2.0.0-rc.0':
+ resolution: {integrity: sha512-nhSMNprz3WmeRvd8iUs5JqkKr0Ncx46JtPxM3AhXes84XpSJfmIwKeWXRpsr53S7kqPkQfPhzrMFUxSNb23qSA==}
+ engines: {node: '>=18'}
'@mapbox/node-pre-gyp@2.0.0-rc.0':
resolution: {integrity: sha512-nhSMNprz3WmeRvd8iUs5JqkKr0Ncx46JtPxM3AhXes84XpSJfmIwKeWXRpsr53S7kqPkQfPhzrMFUxSNb23qSA==}
engines: {node: '>=18'}
@@ -1628,6 +1727,8 @@ packages:
resolution: {integrity: sha512-OAs1xG+FfLX0LoRASpqzVntVV/RpYkgpI0VrUnw2u0Q1qiZUzcPffxRK8HF3gc4GjuhG5ahOEMJ9bswBiZPq0g==}
engines: {node: ^14.16.0 || >=16.0.0}
+ '@netlify/open-api@2.35.0':
+ resolution: {integrity: sha512-c6LpV29CKMgq6/eViItE6L2ova9UldBO9tHRvvwpJfSBgCwWaFhmiepe07E3xIW4GfTCGoWE816mNzXB/2ceZg==}
'@netlify/open-api@2.35.0':
resolution: {integrity: sha512-c6LpV29CKMgq6/eViItE6L2ova9UldBO9tHRvvwpJfSBgCwWaFhmiepe07E3xIW4GfTCGoWE816mNzXB/2ceZg==}
engines: {node: '>=14'}
@@ -1657,24 +1758,34 @@ packages:
'@nuxt/devalue@2.0.2':
resolution: {integrity: sha512-GBzP8zOc7CGWyFQS6dv1lQz8VVpz5C2yRszbXufwG/9zhStTIH50EtD87NmWbTMwXDvZLNg8GIpb1UFdH93JCA==}
+ '@nuxt/devtools-kit@1.7.0':
+ resolution: {integrity: sha512-+NgZ2uP5BuneqvQbe7EdOEaFEDy8762c99pLABtn7/Ur0ExEsQJMP7pYjjoTfKubhBqecr5Vo9yHkPBj1eHulQ==}
'@nuxt/devtools-kit@1.7.0':
resolution: {integrity: sha512-+NgZ2uP5BuneqvQbe7EdOEaFEDy8762c99pLABtn7/Ur0ExEsQJMP7pYjjoTfKubhBqecr5Vo9yHkPBj1eHulQ==}
peerDependencies:
vite: '*'
+ '@nuxt/devtools-wizard@1.7.0':
+ resolution: {integrity: sha512-86Gd92uEw0Dh2ErIYT9TMIrMOISE96fCRN4rxeryTvyiowQOsyrbkCeMNYrEehoRL+lohoyK6iDmFajadPNwWQ==}
'@nuxt/devtools-wizard@1.7.0':
resolution: {integrity: sha512-86Gd92uEw0Dh2ErIYT9TMIrMOISE96fCRN4rxeryTvyiowQOsyrbkCeMNYrEehoRL+lohoyK6iDmFajadPNwWQ==}
hasBin: true
+ '@nuxt/devtools@1.7.0':
+ resolution: {integrity: sha512-uvnjt5Zowkz7tZmnks2cGreg1XZIiSyVzQ2MYiRXACodlXcwJ0dpUS3WTxu8BR562K+772oRdvKie9AQlyZUgg==}
'@nuxt/devtools@1.7.0':
resolution: {integrity: sha512-uvnjt5Zowkz7tZmnks2cGreg1XZIiSyVzQ2MYiRXACodlXcwJ0dpUS3WTxu8BR562K+772oRdvKie9AQlyZUgg==}
hasBin: true
peerDependencies:
vite: '*'
+ '@nuxt/fonts@0.10.3':
+ resolution: {integrity: sha512-wLCQ+olKZtClVmMEgjsNNDfcNCmyhIv8eujcWYYoFiv1Csy1ySqjI2+1Kq7wwaJhWl4sU83KQC2lLdiMuEeHCw==}
'@nuxt/fonts@0.10.3':
resolution: {integrity: sha512-wLCQ+olKZtClVmMEgjsNNDfcNCmyhIv8eujcWYYoFiv1Csy1ySqjI2+1Kq7wwaJhWl4sU83KQC2lLdiMuEeHCw==}
+ '@nuxt/icon@1.10.3':
+ resolution: {integrity: sha512-ESIiSIpETLLcn5p4U8S0F3AQ5Mox0MoHAVKczamY4STh3Dwrc8labLhtN6lunwpQEv6UGuiutdvfkJ88zu44Ew==}
'@nuxt/icon@1.10.3':
resolution: {integrity: sha512-ESIiSIpETLLcn5p4U8S0F3AQ5Mox0MoHAVKczamY4STh3Dwrc8labLhtN6lunwpQEv6UGuiutdvfkJ88zu44Ew==}
@@ -1682,19 +1793,30 @@ packages:
resolution: {integrity: sha512-qNj7OCNsoGcutGOo1R2PYp4tQ/6uD77aSakyDoVAmLSRJBmhFTnT2+gIqVD95JMmkSHgYhmSX4gGxnaQK/t1cw==}
engines: {node: ^14.16.0 || >=16.11.0}
+ '@nuxt/kit@3.15.0':
+ resolution: {integrity: sha512-Q7k11wDTLIbBgoTfRYNrciK7PvjKklewrKd5PRMJCpn9Lmuqkq59HErNfJXFrBKHsE3Ld0DB6WUtpPGOvWJZoQ==}
+ engines: {node: '>=18.20.5'}
'@nuxt/kit@3.15.0':
resolution: {integrity: sha512-Q7k11wDTLIbBgoTfRYNrciK7PvjKklewrKd5PRMJCpn9Lmuqkq59HErNfJXFrBKHsE3Ld0DB6WUtpPGOvWJZoQ==}
engines: {node: '>=18.20.5'}
+ '@nuxt/schema@3.15.0':
+ resolution: {integrity: sha512-sAgLgSOj/SZxUmlJ/Q3TLRwIAqmiiZ5gCBrT+eq9CowIj7bgxX92pT720pDLEDs4wlXiTTsqC8nyqXQis8pPyA==}
'@nuxt/schema@3.15.0':
resolution: {integrity: sha512-sAgLgSOj/SZxUmlJ/Q3TLRwIAqmiiZ5gCBrT+eq9CowIj7bgxX92pT720pDLEDs4wlXiTTsqC8nyqXQis8pPyA==}
engines: {node: ^14.18.0 || >=16.10.0}
+ '@nuxt/telemetry@2.6.2':
+ resolution: {integrity: sha512-UReyqp35ZFcsyMuP+DmDj/0W/odANCuObdqYyAIR+/Z/9yDHtBO6Cc/wWbjjhrt41yhhco7/+vILELPHWD+wxg==}
+ engines: {node: ^14.18.0 || >=16.10.0}
'@nuxt/telemetry@2.6.2':
resolution: {integrity: sha512-UReyqp35ZFcsyMuP+DmDj/0W/odANCuObdqYyAIR+/Z/9yDHtBO6Cc/wWbjjhrt41yhhco7/+vILELPHWD+wxg==}
engines: {node: ^14.18.0 || >=16.10.0}
hasBin: true
+ '@nuxt/vite-builder@3.15.0':
+ resolution: {integrity: sha512-cNwX/Q4nqM4hOHbaLUQWdd/cPn8U00GqkTxdxrpzZqTs+A8d8aJQMpuAY+rXclXoU2t0z90HTdSwtgehHGersQ==}
+ engines: {node: ^18.20.5 || ^20.9.0 || >=22.0.0}
'@nuxt/vite-builder@3.15.0':
resolution: {integrity: sha512-cNwX/Q4nqM4hOHbaLUQWdd/cPn8U00GqkTxdxrpzZqTs+A8d8aJQMpuAY+rXclXoU2t0z90HTdSwtgehHGersQ==}
engines: {node: ^18.20.5 || ^20.9.0 || >=22.0.0}
@@ -1818,6 +1940,8 @@ packages:
resolution: {integrity: sha512-8HArjKx+RaAI8uEIgcORbZIPklyh1YLjPSBus8hjRmvLi6DeFzgOcdZ7KwPabKj8mXF8dX0hyfAyGfycz0DbFw==}
engines: {node: '>=14'}
+ '@opentelemetry/api-logs@0.56.0':
+ resolution: {integrity: sha512-Wr39+94UNNG3Ei9nv3pHd4AJ63gq5nSemMRpCd8fPwDL9rN3vK26lzxfH27mw16XzOSO+TpyQwBAMaLxaPWG0g==}
'@opentelemetry/api-logs@0.56.0':
resolution: {integrity: sha512-Wr39+94UNNG3Ei9nv3pHd4AJ63gq5nSemMRpCd8fPwDL9rN3vK26lzxfH27mw16XzOSO+TpyQwBAMaLxaPWG0g==}
engines: {node: '>=14'}
@@ -1826,162 +1950,216 @@ packages:
resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
engines: {node: '>=8.0.0'}
+ '@opentelemetry/context-async-hooks@1.30.0':
+ resolution: {integrity: sha512-roCetrG/cz0r/gugQm/jFo75UxblVvHaNSRoR0kSSRSzXFAiIBqFCZuH458BHBNRtRe+0yJdIJ21L9t94bw7+g==}
'@opentelemetry/context-async-hooks@1.30.0':
resolution: {integrity: sha512-roCetrG/cz0r/gugQm/jFo75UxblVvHaNSRoR0kSSRSzXFAiIBqFCZuH458BHBNRtRe+0yJdIJ21L9t94bw7+g==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
+ '@opentelemetry/core@1.29.0':
+ resolution: {integrity: sha512-gmT7vAreXl0DTHD2rVZcw3+l2g84+5XiHIqdBUxXbExymPCvSsGOpiwMmn8nkiJur28STV31wnhIDrzWDPzjfA==}
'@opentelemetry/core@1.29.0':
resolution: {integrity: sha512-gmT7vAreXl0DTHD2rVZcw3+l2g84+5XiHIqdBUxXbExymPCvSsGOpiwMmn8nkiJur28STV31wnhIDrzWDPzjfA==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
+ '@opentelemetry/core@1.30.0':
+ resolution: {integrity: sha512-Q/3u/K73KUjTCnFUP97ZY+pBjQ1kPEgjOfXj/bJl8zW7GbXdkw6cwuyZk6ZTXkVgCBsYRYUzx4fvYK1jxdb9MA==}
'@opentelemetry/core@1.30.0':
resolution: {integrity: sha512-Q/3u/K73KUjTCnFUP97ZY+pBjQ1kPEgjOfXj/bJl8zW7GbXdkw6cwuyZk6ZTXkVgCBsYRYUzx4fvYK1jxdb9MA==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
+ '@opentelemetry/instrumentation-amqplib@0.45.0':
+ resolution: {integrity: sha512-SlKLsOS65NGMIBG1Lh/hLrMDU9WzTUF25apnV6ZmWZB1bBmUwan7qrwwrTu1cL5LzJWCXOdZPuTaxP7pC9qxnQ==}
'@opentelemetry/instrumentation-amqplib@0.45.0':
resolution: {integrity: sha512-SlKLsOS65NGMIBG1Lh/hLrMDU9WzTUF25apnV6ZmWZB1bBmUwan7qrwwrTu1cL5LzJWCXOdZPuTaxP7pC9qxnQ==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-connect@0.42.0':
+ resolution: {integrity: sha512-bOoYHBmbnq/jFaLHmXJ55VQ6jrH5fHDMAPjFM0d3JvR0dvIqW7anEoNC33QqYGFYUfVJ50S0d/eoyF61ALqQuA==}
'@opentelemetry/instrumentation-connect@0.42.0':
resolution: {integrity: sha512-bOoYHBmbnq/jFaLHmXJ55VQ6jrH5fHDMAPjFM0d3JvR0dvIqW7anEoNC33QqYGFYUfVJ50S0d/eoyF61ALqQuA==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-dataloader@0.15.0':
+ resolution: {integrity: sha512-5fP35A2jUPk4SerVcduEkpbRAIoqa2PaP5rWumn01T1uSbavXNccAr3Xvx1N6xFtZxXpLJq4FYqGFnMgDWgVng==}
'@opentelemetry/instrumentation-dataloader@0.15.0':
resolution: {integrity: sha512-5fP35A2jUPk4SerVcduEkpbRAIoqa2PaP5rWumn01T1uSbavXNccAr3Xvx1N6xFtZxXpLJq4FYqGFnMgDWgVng==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-express@0.46.0':
+ resolution: {integrity: sha512-BCEClDj/HPq/1xYRAlOr6z+OUnbp2eFp18DSrgyQz4IT9pkdYk8eWHnMi9oZSqlC6J5mQzkFmaW5RrKb1GLQhg==}
'@opentelemetry/instrumentation-express@0.46.0':
resolution: {integrity: sha512-BCEClDj/HPq/1xYRAlOr6z+OUnbp2eFp18DSrgyQz4IT9pkdYk8eWHnMi9oZSqlC6J5mQzkFmaW5RrKb1GLQhg==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-fastify@0.43.0':
+ resolution: {integrity: sha512-Lmdsg7tYiV+K3/NKVAQfnnLNGmakUOFdB0PhoTh2aXuSyCmyNnnDvhn2MsArAPTZ68wnD5Llh5HtmiuTkf+DyQ==}
'@opentelemetry/instrumentation-fastify@0.43.0':
resolution: {integrity: sha512-Lmdsg7tYiV+K3/NKVAQfnnLNGmakUOFdB0PhoTh2aXuSyCmyNnnDvhn2MsArAPTZ68wnD5Llh5HtmiuTkf+DyQ==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-fs@0.18.0':
+ resolution: {integrity: sha512-kC40y6CEMONm8/MWwoF5GHWIC7gOdF+g3sgsjfwJaUkgD6bdWV+FgG0XApqSbTQndICKzw3RonVk8i7s6mHqhA==}
'@opentelemetry/instrumentation-fs@0.18.0':
resolution: {integrity: sha512-kC40y6CEMONm8/MWwoF5GHWIC7gOdF+g3sgsjfwJaUkgD6bdWV+FgG0XApqSbTQndICKzw3RonVk8i7s6mHqhA==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-generic-pool@0.42.0':
+ resolution: {integrity: sha512-J4QxqiQ1imtB9ogzsOnHra0g3dmmLAx4JCeoK3o0rFes1OirljNHnO8Hsj4s1jAir8WmWvnEEQO1y8yk6j2tog==}
'@opentelemetry/instrumentation-generic-pool@0.42.0':
resolution: {integrity: sha512-J4QxqiQ1imtB9ogzsOnHra0g3dmmLAx4JCeoK3o0rFes1OirljNHnO8Hsj4s1jAir8WmWvnEEQO1y8yk6j2tog==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-graphql@0.46.0':
+ resolution: {integrity: sha512-tplk0YWINSECcK89PGM7IVtOYenXyoOuhOQlN0X0YrcDUfMS4tZMKkVc0vyhNWYYrexnUHwNry2YNBNugSpjlQ==}
'@opentelemetry/instrumentation-graphql@0.46.0':
resolution: {integrity: sha512-tplk0YWINSECcK89PGM7IVtOYenXyoOuhOQlN0X0YrcDUfMS4tZMKkVc0vyhNWYYrexnUHwNry2YNBNugSpjlQ==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-hapi@0.44.0':
+ resolution: {integrity: sha512-4HdNIMNXWK1O6nsaQOrACo83QWEVoyNODTdVDbUqtqXiv2peDfD0RAPhSQlSGWLPw3S4d9UoOmrV7s2HYj6T2A==}
'@opentelemetry/instrumentation-hapi@0.44.0':
resolution: {integrity: sha512-4HdNIMNXWK1O6nsaQOrACo83QWEVoyNODTdVDbUqtqXiv2peDfD0RAPhSQlSGWLPw3S4d9UoOmrV7s2HYj6T2A==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-http@0.56.0':
+ resolution: {integrity: sha512-/bWHBUAq8VoATnH9iLk5w8CE9+gj+RgYSUphe7hry472n6fYl7+4PvuScoQMdmSUTprKq/gyr2kOWL6zrC7FkQ==}
'@opentelemetry/instrumentation-http@0.56.0':
resolution: {integrity: sha512-/bWHBUAq8VoATnH9iLk5w8CE9+gj+RgYSUphe7hry472n6fYl7+4PvuScoQMdmSUTprKq/gyr2kOWL6zrC7FkQ==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-ioredis@0.46.0':
+ resolution: {integrity: sha512-sOdsq8oGi29V58p1AkefHvuB3l2ymP1IbxRIX3y4lZesQWKL8fLhBmy8xYjINSQ5gHzWul2yoz7pe7boxhZcqQ==}
'@opentelemetry/instrumentation-ioredis@0.46.0':
resolution: {integrity: sha512-sOdsq8oGi29V58p1AkefHvuB3l2ymP1IbxRIX3y4lZesQWKL8fLhBmy8xYjINSQ5gHzWul2yoz7pe7boxhZcqQ==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-kafkajs@0.6.0':
+ resolution: {integrity: sha512-MGQrzqEUAl0tacKJUFpuNHJesyTi51oUzSVizn7FdvJplkRIdS11FukyZBZJEscofSEdk7Ycmg+kNMLi5QHUFg==}
'@opentelemetry/instrumentation-kafkajs@0.6.0':
resolution: {integrity: sha512-MGQrzqEUAl0tacKJUFpuNHJesyTi51oUzSVizn7FdvJplkRIdS11FukyZBZJEscofSEdk7Ycmg+kNMLi5QHUFg==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-knex@0.43.0':
+ resolution: {integrity: sha512-mOp0TRQNFFSBj5am0WF67fRO7UZMUmsF3/7HSDja9g3H4pnj+4YNvWWyZn4+q0rGrPtywminAXe0rxtgaGYIqg==}
'@opentelemetry/instrumentation-knex@0.43.0':
resolution: {integrity: sha512-mOp0TRQNFFSBj5am0WF67fRO7UZMUmsF3/7HSDja9g3H4pnj+4YNvWWyZn4+q0rGrPtywminAXe0rxtgaGYIqg==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-koa@0.46.0':
+ resolution: {integrity: sha512-RcWXMQdJQANnPUaXbHY5G0Fg6gmleZ/ZtZeSsekWPaZmQq12FGk0L1UwodIgs31OlYfviAZ4yTeytoSUkgo5vQ==}
'@opentelemetry/instrumentation-koa@0.46.0':
resolution: {integrity: sha512-RcWXMQdJQANnPUaXbHY5G0Fg6gmleZ/ZtZeSsekWPaZmQq12FGk0L1UwodIgs31OlYfviAZ4yTeytoSUkgo5vQ==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-lru-memoizer@0.43.0':
+ resolution: {integrity: sha512-fZc+1eJUV+tFxaB3zkbupiA8SL3vhDUq89HbDNg1asweYrEb9OlHIB+Ot14ZiHUc1qCmmWmZHbPTwa56mVVwzg==}
'@opentelemetry/instrumentation-lru-memoizer@0.43.0':
resolution: {integrity: sha512-fZc+1eJUV+tFxaB3zkbupiA8SL3vhDUq89HbDNg1asweYrEb9OlHIB+Ot14ZiHUc1qCmmWmZHbPTwa56mVVwzg==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-mongodb@0.50.0':
+ resolution: {integrity: sha512-DtwJMjYFXFT5auAvv8aGrBj1h3ciA/dXQom11rxL7B1+Oy3FopSpanvwYxJ+z0qmBrQ1/iMuWELitYqU4LnlkQ==}
'@opentelemetry/instrumentation-mongodb@0.50.0':
resolution: {integrity: sha512-DtwJMjYFXFT5auAvv8aGrBj1h3ciA/dXQom11rxL7B1+Oy3FopSpanvwYxJ+z0qmBrQ1/iMuWELitYqU4LnlkQ==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-mongoose@0.45.0':
+ resolution: {integrity: sha512-zHgNh+A01C5baI2mb5dAGyMC7DWmUpOfwpV8axtC0Hd5Uzqv+oqKgKbVDIVhOaDkPxjgVJwYF9YQZl2pw2qxIA==}
'@opentelemetry/instrumentation-mongoose@0.45.0':
resolution: {integrity: sha512-zHgNh+A01C5baI2mb5dAGyMC7DWmUpOfwpV8axtC0Hd5Uzqv+oqKgKbVDIVhOaDkPxjgVJwYF9YQZl2pw2qxIA==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-mysql2@0.44.0':
+ resolution: {integrity: sha512-e9QY4AGsjGFwmfHd6kBa4yPaQZjAq2FuxMb0BbKlXCAjG+jwqw+sr9xWdJGR60jMsTq52hx3mAlE3dUJ9BipxQ==}
'@opentelemetry/instrumentation-mysql2@0.44.0':
resolution: {integrity: sha512-e9QY4AGsjGFwmfHd6kBa4yPaQZjAq2FuxMb0BbKlXCAjG+jwqw+sr9xWdJGR60jMsTq52hx3mAlE3dUJ9BipxQ==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-mysql@0.44.0':
+ resolution: {integrity: sha512-al7jbXvT/uT1KV8gdNDzaWd5/WXf+mrjrsF0/NtbnqLa0UUFGgQnoK3cyborgny7I+KxWhL8h7YPTf6Zq4nKsg==}
'@opentelemetry/instrumentation-mysql@0.44.0':
resolution: {integrity: sha512-al7jbXvT/uT1KV8gdNDzaWd5/WXf+mrjrsF0/NtbnqLa0UUFGgQnoK3cyborgny7I+KxWhL8h7YPTf6Zq4nKsg==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-nestjs-core@0.43.0':
+ resolution: {integrity: sha512-NEo4RU7HTjiaXk3curqXUvCb9alRiFWxQY//+hvDXwWLlADX2vB6QEmVCeEZrKO+6I/tBrI4vNdAnbCY9ldZVg==}
'@opentelemetry/instrumentation-nestjs-core@0.43.0':
resolution: {integrity: sha512-NEo4RU7HTjiaXk3curqXUvCb9alRiFWxQY//+hvDXwWLlADX2vB6QEmVCeEZrKO+6I/tBrI4vNdAnbCY9ldZVg==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-pg@0.49.0':
+ resolution: {integrity: sha512-3alvNNjPXVdAPdY1G7nGRVINbDxRK02+KAugDiEpzw0jFQfU8IzFkSWA4jyU4/GbMxKvHD+XIOEfSjpieSodKw==}
'@opentelemetry/instrumentation-pg@0.49.0':
resolution: {integrity: sha512-3alvNNjPXVdAPdY1G7nGRVINbDxRK02+KAugDiEpzw0jFQfU8IzFkSWA4jyU4/GbMxKvHD+XIOEfSjpieSodKw==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-redis-4@0.45.0':
+ resolution: {integrity: sha512-Sjgym1xn3mdxPRH5CNZtoz+bFd3E3NlGIu7FoYr4YrQouCc9PbnmoBcmSkEdDy5LYgzNildPgsjx9l0EKNjKTQ==}
'@opentelemetry/instrumentation-redis-4@0.45.0':
resolution: {integrity: sha512-Sjgym1xn3mdxPRH5CNZtoz+bFd3E3NlGIu7FoYr4YrQouCc9PbnmoBcmSkEdDy5LYgzNildPgsjx9l0EKNjKTQ==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-tedious@0.17.0':
+ resolution: {integrity: sha512-yRBz2409an03uVd1Q2jWMt3SqwZqRFyKoWYYX3hBAtPDazJ4w5L+1VOij71TKwgZxZZNdDBXImTQjii+VeuzLg==}
'@opentelemetry/instrumentation-tedious@0.17.0':
resolution: {integrity: sha512-yRBz2409an03uVd1Q2jWMt3SqwZqRFyKoWYYX3hBAtPDazJ4w5L+1VOij71TKwgZxZZNdDBXImTQjii+VeuzLg==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation-undici@0.9.0':
+ resolution: {integrity: sha512-lxc3cpUZ28CqbrWcUHxGW/ObDpMOYbuxF/ZOzeFZq54P9uJ2Cpa8gcrC9F716mtuiMaekwk8D6n34vg/JtkkxQ==}
'@opentelemetry/instrumentation-undici@0.9.0':
resolution: {integrity: sha512-lxc3cpUZ28CqbrWcUHxGW/ObDpMOYbuxF/ZOzeFZq54P9uJ2Cpa8gcrC9F716mtuiMaekwk8D6n34vg/JtkkxQ==}
engines: {node: '>=14'}
@@ -1994,6 +2172,8 @@ packages:
peerDependencies:
'@opentelemetry/api': ^1.3.0
+ '@opentelemetry/instrumentation@0.56.0':
+ resolution: {integrity: sha512-2KkGBKE+FPXU1F0zKww+stnlUxUTlBvLCiWdP63Z9sqXYeNI/ziNzsxAp4LAdUcTQmXjw1IWgvm5CAb/BHy99w==}
'@opentelemetry/instrumentation@0.56.0':
resolution: {integrity: sha512-2KkGBKE+FPXU1F0zKww+stnlUxUTlBvLCiWdP63Z9sqXYeNI/ziNzsxAp4LAdUcTQmXjw1IWgvm5CAb/BHy99w==}
engines: {node: '>=14'}
@@ -2004,12 +2184,16 @@ packages:
resolution: {integrity: sha512-faYX1N0gpLhej/6nyp6bgRjzAKXn5GOEMYY7YhciSfCoITAktLUtQ36d24QEWNA1/WA1y6qQunCe0OhHRkVl9g==}
engines: {node: '>=14'}
+ '@opentelemetry/resources@1.30.0':
+ resolution: {integrity: sha512-5mGMjL0Uld/99t7/pcd7CuVtJbkARckLVuiOX84nO8RtLtIz0/J6EOHM2TGvPZ6F4K+XjUq13gMx14w80SVCQg==}
'@opentelemetry/resources@1.30.0':
resolution: {integrity: sha512-5mGMjL0Uld/99t7/pcd7CuVtJbkARckLVuiOX84nO8RtLtIz0/J6EOHM2TGvPZ6F4K+XjUq13gMx14w80SVCQg==}
engines: {node: '>=14'}
peerDependencies:
'@opentelemetry/api': '>=1.0.0 <1.10.0'
+ '@opentelemetry/sdk-trace-base@1.30.0':
+ resolution: {integrity: sha512-RKQDaDIkV7PwizmHw+rE/FgfB2a6MBx+AEVVlAHXRG1YYxLiBpPX2KhmoB99R5vA4b72iJrjle68NDWnbrE9Dg==}
'@opentelemetry/sdk-trace-base@1.30.0':
resolution: {integrity: sha512-RKQDaDIkV7PwizmHw+rE/FgfB2a6MBx+AEVVlAHXRG1YYxLiBpPX2KhmoB99R5vA4b72iJrjle68NDWnbrE9Dg==}
engines: {node: '>=14'}
@@ -2141,6 +2325,8 @@ packages:
'@popperjs/core@2.11.8':
resolution: {integrity: sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==}
+ '@prisma/client@6.1.0':
+ resolution: {integrity: sha512-AbQYc5+EJKm1Ydfq3KxwcGiy7wIbm4/QbjCKWWoNROtvy7d6a3gmAGkKjK0iUCzh+rHV8xDhD5Cge8ke/kiy5Q==}
'@prisma/client@6.1.0':
resolution: {integrity: sha512-AbQYc5+EJKm1Ydfq3KxwcGiy7wIbm4/QbjCKWWoNROtvy7d6a3gmAGkKjK0iUCzh+rHV8xDhD5Cge8ke/kiy5Q==}
engines: {node: '>=18.18'}
@@ -2150,21 +2336,33 @@ packages:
prisma:
optional: true
+ '@prisma/debug@6.1.0':
+ resolution: {integrity: sha512-0himsvcM4DGBTtvXkd2Tggv6sl2JyUYLzEGXXleFY+7Kp6rZeSS3hiTW9mwtUlXrwYbJP6pwlVNB7jYElrjWUg==}
'@prisma/debug@6.1.0':
resolution: {integrity: sha512-0himsvcM4DGBTtvXkd2Tggv6sl2JyUYLzEGXXleFY+7Kp6rZeSS3hiTW9mwtUlXrwYbJP6pwlVNB7jYElrjWUg==}
+ '@prisma/engines-version@6.1.0-21.11f085a2012c0f4778414c8db2651556ee0ef959':
+ resolution: {integrity: sha512-PdJqmYM2Fd8K0weOOtQThWylwjsDlTig+8Pcg47/jszMuLL9iLIaygC3cjWJLda69siRW4STlCTMSgOjZzvKPQ==}
'@prisma/engines-version@6.1.0-21.11f085a2012c0f4778414c8db2651556ee0ef959':
resolution: {integrity: sha512-PdJqmYM2Fd8K0weOOtQThWylwjsDlTig+8Pcg47/jszMuLL9iLIaygC3cjWJLda69siRW4STlCTMSgOjZzvKPQ==}
+ '@prisma/engines@6.1.0':
+ resolution: {integrity: sha512-GnYJbCiep3Vyr1P/415ReYrgJUjP79fBNc1wCo7NP6Eia0CzL2Ot9vK7Infczv3oK7JLrCcawOSAxFxNFsAERQ==}
'@prisma/engines@6.1.0':
resolution: {integrity: sha512-GnYJbCiep3Vyr1P/415ReYrgJUjP79fBNc1wCo7NP6Eia0CzL2Ot9vK7Infczv3oK7JLrCcawOSAxFxNFsAERQ==}
+ '@prisma/fetch-engine@6.1.0':
+ resolution: {integrity: sha512-asdFi7TvPlEZ8CzSZ/+Du5wZ27q6OJbRSXh+S8ISZguu+S9KtS/gP7NeXceZyb1Jv1SM1S5YfiCv+STDsG6rrg==}
'@prisma/fetch-engine@6.1.0':
resolution: {integrity: sha512-asdFi7TvPlEZ8CzSZ/+Du5wZ27q6OJbRSXh+S8ISZguu+S9KtS/gP7NeXceZyb1Jv1SM1S5YfiCv+STDsG6rrg==}
+ '@prisma/get-platform@6.1.0':
+ resolution: {integrity: sha512-ia8bNjboBoHkmKGGaWtqtlgQOhCi7+f85aOkPJKgNwWvYrT6l78KgojLekE8zMhVk0R9lWcifV0Pf8l3/15V0Q==}
'@prisma/get-platform@6.1.0':
resolution: {integrity: sha512-ia8bNjboBoHkmKGGaWtqtlgQOhCi7+f85aOkPJKgNwWvYrT6l78KgojLekE8zMhVk0R9lWcifV0Pf8l3/15V0Q==}
+ '@prisma/instrumentation@5.22.0':
+ resolution: {integrity: sha512-LxccF392NN37ISGxIurUljZSh1YWnphO34V5a0+T7FVQG2u9bhAXRTJpgmQ3483woVhkraQZFF7cbRrpbw/F4Q==}
'@prisma/instrumentation@5.22.0':
resolution: {integrity: sha512-LxccF392NN37ISGxIurUljZSh1YWnphO34V5a0+T7FVQG2u9bhAXRTJpgmQ3483woVhkraQZFF7cbRrpbw/F4Q==}
@@ -2179,6 +2377,8 @@ packages:
'@redocly/config@0.17.1':
resolution: {integrity: sha512-CEmvaJuG7pm2ylQg53emPmtgm4nW2nxBgwXzbVEHpGas/lGnMyN8Zlkgiz6rPw0unASg6VW3wlz27SOL5XFHYQ==}
+ '@redocly/openapi-core@1.26.1':
+ resolution: {integrity: sha512-xRuVZqMVRFzqjbUCpOTra4tbnmQMWsya996omZMV3WgD084Z6OWB3FXflhAp93E/yAmbWlWZpddw758AyoaLSw==}
'@redocly/openapi-core@1.26.1':
resolution: {integrity: sha512-xRuVZqMVRFzqjbUCpOTra4tbnmQMWsya996omZMV3WgD084Z6OWB3FXflhAp93E/yAmbWlWZpddw758AyoaLSw==}
engines: {node: '>=14.19.0', npm: '>=7.0.0'}
@@ -2203,6 +2403,8 @@ packages:
'@types/babel__core':
optional: true
+ '@rollup/plugin-commonjs@28.0.2':
+ resolution: {integrity: sha512-BEFI2EDqzl+vA1rl97IDRZ61AIwGH093d9nz8+dThxJNH8oSoB7MjWvPCX3dkaK1/RCJ/1v/R1XB15FuSs0fQw==}
'@rollup/plugin-commonjs@28.0.2':
resolution: {integrity: sha512-BEFI2EDqzl+vA1rl97IDRZ61AIwGH093d9nz8+dThxJNH8oSoB7MjWvPCX3dkaK1/RCJ/1v/R1XB15FuSs0fQw==}
engines: {node: '>=16.0.0 || 14 >= 14.17'}
@@ -2230,6 +2432,8 @@ packages:
rollup:
optional: true
+ '@rollup/plugin-node-resolve@15.3.1':
+ resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==}
'@rollup/plugin-node-resolve@15.3.1':
resolution: {integrity: sha512-tgg6b91pAybXHJQMAAwW9VuWBO6Thi+q7BCNARLwSqlmsHz0XYURtGvh/AuwSADXSI4h/2uHbs7s4FzlZDGSGA==}
engines: {node: '>=14.0.0'}
@@ -2244,6 +2448,8 @@ packages:
peerDependencies:
rollup: ^1.20.0 || ^2.0.0
+ '@rollup/plugin-replace@6.0.2':
+ resolution: {integrity: sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==}
'@rollup/plugin-replace@6.0.2':
resolution: {integrity: sha512-7QaYCf8bqF04dOy7w/eHmJeNExxTYwvKAmlSAH/EaWWUzbT0h5sbF6bktFoX/0F/0qwng5/dWFMyf3gzaM8DsQ==}
engines: {node: '>=14.0.0'}
@@ -2277,6 +2483,8 @@ packages:
peerDependencies:
rollup: ^1.20.0||^2.0.0
+ '@rollup/pluginutils@5.1.4':
+ resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
'@rollup/pluginutils@5.1.4':
resolution: {integrity: sha512-USm05zrsFxYLPdWWq+K3STlWiT/3ELn3RcV5hJMghpeAIhxfsUIg6mt12CBJBInWMV4VneoV7SfGv8xIwo2qNQ==}
engines: {node: '>=14.0.0'}
@@ -2286,54 +2494,74 @@ packages:
rollup:
optional: true
+ '@rollup/rollup-android-arm-eabi@4.29.1':
+ resolution: {integrity: sha512-ssKhA8RNltTZLpG6/QNkCSge+7mBQGUqJRisZ2MDQcEGaK93QESEgWK2iOpIDZ7k9zPVkG5AS3ksvD5ZWxmItw==}
'@rollup/rollup-android-arm-eabi@4.29.1':
resolution: {integrity: sha512-ssKhA8RNltTZLpG6/QNkCSge+7mBQGUqJRisZ2MDQcEGaK93QESEgWK2iOpIDZ7k9zPVkG5AS3ksvD5ZWxmItw==}
cpu: [arm]
os: [android]
+ '@rollup/rollup-android-arm64@4.29.1':
+ resolution: {integrity: sha512-CaRfrV0cd+NIIcVVN/jx+hVLN+VRqnuzLRmfmlzpOzB87ajixsN/+9L5xNmkaUUvEbI5BmIKS+XTwXsHEb65Ew==}
'@rollup/rollup-android-arm64@4.29.1':
resolution: {integrity: sha512-CaRfrV0cd+NIIcVVN/jx+hVLN+VRqnuzLRmfmlzpOzB87ajixsN/+9L5xNmkaUUvEbI5BmIKS+XTwXsHEb65Ew==}
cpu: [arm64]
os: [android]
+ '@rollup/rollup-darwin-arm64@4.29.1':
+ resolution: {integrity: sha512-2ORr7T31Y0Mnk6qNuwtyNmy14MunTAMx06VAPI6/Ju52W10zk1i7i5U3vlDRWjhOI5quBcrvhkCHyF76bI7kEw==}
'@rollup/rollup-darwin-arm64@4.29.1':
resolution: {integrity: sha512-2ORr7T31Y0Mnk6qNuwtyNmy14MunTAMx06VAPI6/Ju52W10zk1i7i5U3vlDRWjhOI5quBcrvhkCHyF76bI7kEw==}
cpu: [arm64]
os: [darwin]
+ '@rollup/rollup-darwin-x64@4.29.1':
+ resolution: {integrity: sha512-j/Ej1oanzPjmN0tirRd5K2/nncAhS9W6ICzgxV+9Y5ZsP0hiGhHJXZ2JQ53iSSjj8m6cRY6oB1GMzNn2EUt6Ng==}
'@rollup/rollup-darwin-x64@4.29.1':
resolution: {integrity: sha512-j/Ej1oanzPjmN0tirRd5K2/nncAhS9W6ICzgxV+9Y5ZsP0hiGhHJXZ2JQ53iSSjj8m6cRY6oB1GMzNn2EUt6Ng==}
cpu: [x64]
os: [darwin]
+ '@rollup/rollup-freebsd-arm64@4.29.1':
+ resolution: {integrity: sha512-91C//G6Dm/cv724tpt7nTyP+JdN12iqeXGFM1SqnljCmi5yTXriH7B1r8AD9dAZByHpKAumqP1Qy2vVNIdLZqw==}
'@rollup/rollup-freebsd-arm64@4.29.1':
resolution: {integrity: sha512-91C//G6Dm/cv724tpt7nTyP+JdN12iqeXGFM1SqnljCmi5yTXriH7B1r8AD9dAZByHpKAumqP1Qy2vVNIdLZqw==}
cpu: [arm64]
os: [freebsd]
+ '@rollup/rollup-freebsd-x64@4.29.1':
+ resolution: {integrity: sha512-hEioiEQ9Dec2nIRoeHUP6hr1PSkXzQaCUyqBDQ9I9ik4gCXQZjJMIVzoNLBRGet+hIUb3CISMh9KXuCcWVW/8w==}
'@rollup/rollup-freebsd-x64@4.29.1':
resolution: {integrity: sha512-hEioiEQ9Dec2nIRoeHUP6hr1PSkXzQaCUyqBDQ9I9ik4gCXQZjJMIVzoNLBRGet+hIUb3CISMh9KXuCcWVW/8w==}
cpu: [x64]
os: [freebsd]
+ '@rollup/rollup-linux-arm-gnueabihf@4.29.1':
+ resolution: {integrity: sha512-Py5vFd5HWYN9zxBv3WMrLAXY3yYJ6Q/aVERoeUFwiDGiMOWsMs7FokXihSOaT/PMWUty/Pj60XDQndK3eAfE6A==}
'@rollup/rollup-linux-arm-gnueabihf@4.29.1':
resolution: {integrity: sha512-Py5vFd5HWYN9zxBv3WMrLAXY3yYJ6Q/aVERoeUFwiDGiMOWsMs7FokXihSOaT/PMWUty/Pj60XDQndK3eAfE6A==}
cpu: [arm]
os: [linux]
libc: [glibc]
+ '@rollup/rollup-linux-arm-musleabihf@4.29.1':
+ resolution: {integrity: sha512-RiWpGgbayf7LUcuSNIbahr0ys2YnEERD4gYdISA06wa0i8RALrnzflh9Wxii7zQJEB2/Eh74dX4y/sHKLWp5uQ==}
'@rollup/rollup-linux-arm-musleabihf@4.29.1':
resolution: {integrity: sha512-RiWpGgbayf7LUcuSNIbahr0ys2YnEERD4gYdISA06wa0i8RALrnzflh9Wxii7zQJEB2/Eh74dX4y/sHKLWp5uQ==}
cpu: [arm]
os: [linux]
libc: [musl]
+ '@rollup/rollup-linux-arm64-gnu@4.29.1':
+ resolution: {integrity: sha512-Z80O+taYxTQITWMjm/YqNoe9d10OX6kDh8X5/rFCMuPqsKsSyDilvfg+vd3iXIqtfmp+cnfL1UrYirkaF8SBZA==}
'@rollup/rollup-linux-arm64-gnu@4.29.1':
resolution: {integrity: sha512-Z80O+taYxTQITWMjm/YqNoe9d10OX6kDh8X5/rFCMuPqsKsSyDilvfg+vd3iXIqtfmp+cnfL1UrYirkaF8SBZA==}
cpu: [arm64]
os: [linux]
libc: [glibc]
+ '@rollup/rollup-linux-arm64-musl@4.29.1':
+ resolution: {integrity: sha512-fOHRtF9gahwJk3QVp01a/GqS4hBEZCV1oKglVVq13kcK3NeVlS4BwIFzOHDbmKzt3i0OuHG4zfRP0YoG5OF/rA==}
'@rollup/rollup-linux-arm64-musl@4.29.1':
resolution: {integrity: sha512-fOHRtF9gahwJk3QVp01a/GqS4hBEZCV1oKglVVq13kcK3NeVlS4BwIFzOHDbmKzt3i0OuHG4zfRP0YoG5OF/rA==}
cpu: [arm64]
@@ -2346,18 +2574,30 @@ packages:
os: [linux]
libc: [glibc]
+ '@rollup/rollup-linux-powerpc64le-gnu@4.29.1':
+ resolution: {integrity: sha512-9b4Mg5Yfz6mRnlSPIdROcfw1BU22FQxmfjlp/CShWwO3LilKQuMISMTtAu/bxmmrE6A902W2cZJuzx8+gJ8e9w==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.29.1':
+ resolution: {integrity: sha512-5a7q3tnlbcg0OodyxcAdrrCxFi0DgXJSoOuidFUzHZ2GixZXQs6Tc3CHmlvqKAmOs5eRde+JJxeIf9DonkmYkw==}
+ cpu: [loong64]
+ os: [linux]
+ libc: [glibc]
+
'@rollup/rollup-linux-powerpc64le-gnu@4.29.1':
resolution: {integrity: sha512-9b4Mg5Yfz6mRnlSPIdROcfw1BU22FQxmfjlp/CShWwO3LilKQuMISMTtAu/bxmmrE6A902W2cZJuzx8+gJ8e9w==}
cpu: [ppc64]
os: [linux]
libc: [glibc]
+ '@rollup/rollup-linux-riscv64-gnu@4.29.1':
+ resolution: {integrity: sha512-G5pn0NChlbRM8OJWpJFMX4/i8OEU538uiSv0P6roZcbpe/WfhEO+AT8SHVKfp8qhDQzaz7Q+1/ixMy7hBRidnQ==}
'@rollup/rollup-linux-riscv64-gnu@4.29.1':
resolution: {integrity: sha512-G5pn0NChlbRM8OJWpJFMX4/i8OEU538uiSv0P6roZcbpe/WfhEO+AT8SHVKfp8qhDQzaz7Q+1/ixMy7hBRidnQ==}
cpu: [riscv64]
os: [linux]
libc: [glibc]
+ '@rollup/rollup-linux-s390x-gnu@4.29.1':
+ resolution: {integrity: sha512-WM9lIkNdkhVwiArmLxFXpWndFGuOka4oJOZh8EP3Vb8q5lzdSCBuhjavJsw68Q9AKDGeOOIHYzYm4ZFvmWez5g==}
'@rollup/rollup-linux-s390x-gnu@4.29.1':
resolution: {integrity: sha512-WM9lIkNdkhVwiArmLxFXpWndFGuOka4oJOZh8EP3Vb8q5lzdSCBuhjavJsw68Q9AKDGeOOIHYzYm4ZFvmWez5g==}
cpu: [s390x]
@@ -2366,43 +2606,61 @@ packages:
'@rollup/rollup-linux-x64-gnu@4.29.1':
resolution: {integrity: sha512-87xYCwb0cPGZFoGiErT1eDcssByaLX4fc0z2nRM6eMtV9njAfEE6OW3UniAoDhX4Iq5xQVpE6qO9aJbCFumKYQ==}
- cpu: [x64]
+ '@rollup/rollup-linux-x64-gnu@4.29.1':
+ resolution: {integrity: sha512-87xYCwb0cPGZFoGiErT1eDcssByaLX4fc0z2nRM6eMtV9njAfEE6OW3UniAoDhX4Iq5xQVpE6qO9aJbCFumKYQ==}
+ cpu: [x64]
os: [linux]
libc: [glibc]
+ '@rollup/rollup-linux-x64-musl@4.29.1':
+ resolution: {integrity: sha512-xufkSNppNOdVRCEC4WKvlR1FBDyqCSCpQeMMgv9ZyXqqtKBfkw1yfGMTUTs9Qsl6WQbJnsGboWCp7pJGkeMhKA==}
'@rollup/rollup-linux-x64-musl@4.29.1':
resolution: {integrity: sha512-xufkSNppNOdVRCEC4WKvlR1FBDyqCSCpQeMMgv9ZyXqqtKBfkw1yfGMTUTs9Qsl6WQbJnsGboWCp7pJGkeMhKA==}
cpu: [x64]
os: [linux]
libc: [musl]
+ '@rollup/rollup-win32-arm64-msvc@4.29.1':
+ resolution: {integrity: sha512-F2OiJ42m77lSkizZQLuC+jiZ2cgueWQL5YC9tjo3AgaEw+KJmVxHGSyQfDUoYR9cci0lAywv2Clmckzulcq6ig==}
'@rollup/rollup-win32-arm64-msvc@4.29.1':
resolution: {integrity: sha512-F2OiJ42m77lSkizZQLuC+jiZ2cgueWQL5YC9tjo3AgaEw+KJmVxHGSyQfDUoYR9cci0lAywv2Clmckzulcq6ig==}
cpu: [arm64]
os: [win32]
+ '@rollup/rollup-win32-ia32-msvc@4.29.1':
+ resolution: {integrity: sha512-rYRe5S0FcjlOBZQHgbTKNrqxCBUmgDJem/VQTCcTnA2KCabYSWQDrytOzX7avb79cAAweNmMUb/Zw18RNd4mng==}
'@rollup/rollup-win32-ia32-msvc@4.29.1':
resolution: {integrity: sha512-rYRe5S0FcjlOBZQHgbTKNrqxCBUmgDJem/VQTCcTnA2KCabYSWQDrytOzX7avb79cAAweNmMUb/Zw18RNd4mng==}
cpu: [ia32]
os: [win32]
+ '@rollup/rollup-win32-x64-msvc@4.29.1':
+ resolution: {integrity: sha512-+10CMg9vt1MoHj6x1pxyjPSMjHTIlqs8/tBztXvPAx24SKs9jwVnKqHJumlH/IzhaPUaj3T6T6wfZr8okdXaIg==}
'@rollup/rollup-win32-x64-msvc@4.29.1':
resolution: {integrity: sha512-+10CMg9vt1MoHj6x1pxyjPSMjHTIlqs8/tBztXvPAx24SKs9jwVnKqHJumlH/IzhaPUaj3T6T6wfZr8okdXaIg==}
cpu: [x64]
os: [win32]
+ '@sentry-internal/browser-utils@8.47.0':
+ resolution: {integrity: sha512-vOXzYzHTKkahTLDzWWIA4EiVCQ+Gk+7xGWUlNcR2ZiEPBqYZVb5MjsUozAcc7syrSUy6WicyFjcomZ3rlCVQhg==}
'@sentry-internal/browser-utils@8.47.0':
resolution: {integrity: sha512-vOXzYzHTKkahTLDzWWIA4EiVCQ+Gk+7xGWUlNcR2ZiEPBqYZVb5MjsUozAcc7syrSUy6WicyFjcomZ3rlCVQhg==}
engines: {node: '>=14.18'}
+ '@sentry-internal/feedback@8.47.0':
+ resolution: {integrity: sha512-IAiIemTQIalxAOYhUENs9bZ8pMNgJnX3uQSuY7v0gknEqClOGpGkG04X/cxCmtJUj1acZ9ShTGDxoh55a+ggAQ==}
'@sentry-internal/feedback@8.47.0':
resolution: {integrity: sha512-IAiIemTQIalxAOYhUENs9bZ8pMNgJnX3uQSuY7v0gknEqClOGpGkG04X/cxCmtJUj1acZ9ShTGDxoh55a+ggAQ==}
engines: {node: '>=14.18'}
+ '@sentry-internal/replay-canvas@8.47.0':
+ resolution: {integrity: sha512-M4W9UGouEeELbGbP3QsXLDVtGiQSZoWJlKwqMWyqdQgZuLoKw0S33+60t6teLVMhuQZR0UI9VJTF5coiXysnnA==}
'@sentry-internal/replay-canvas@8.47.0':
resolution: {integrity: sha512-M4W9UGouEeELbGbP3QsXLDVtGiQSZoWJlKwqMWyqdQgZuLoKw0S33+60t6teLVMhuQZR0UI9VJTF5coiXysnnA==}
engines: {node: '>=14.18'}
+ '@sentry-internal/replay@8.47.0':
+ resolution: {integrity: sha512-G/S40ZBORj0HSMLw/uVC6YDEPN/dqVk901vf4VYfml686DEhJrZesfAfp5SydJumQ0NKZQrdtvny+BWnlI5H1w==}
'@sentry-internal/replay@8.47.0':
resolution: {integrity: sha512-G/S40ZBORj0HSMLw/uVC6YDEPN/dqVk901vf4VYfml686DEhJrZesfAfp5SydJumQ0NKZQrdtvny+BWnlI5H1w==}
engines: {node: '>=14.18'}
@@ -2419,6 +2677,12 @@ packages:
resolution: {integrity: sha512-aa7XKgZMVl6l04NY+3X7BP7yvQ/s8scn8KzQfTLrGRarziTlMGrsCOBQtCNWXOPEbtxAIHpZ9dsrAn5EJSivOQ==}
engines: {node: '>= 14'}
+ '@sentry/browser@8.47.0':
+ resolution: {integrity: sha512-K6BzHisykmbFy/wORtGyfsAlw7ShevLALzu3ReZZZ18dVubO1bjSNjkZQU9MJD5Jcb9oLwkq89n3N9XIBfvdRA==}
+ '@sentry/babel-plugin-component-annotate@2.22.7':
+ resolution: {integrity: sha512-aa7XKgZMVl6l04NY+3X7BP7yvQ/s8scn8KzQfTLrGRarziTlMGrsCOBQtCNWXOPEbtxAIHpZ9dsrAn5EJSivOQ==}
+ engines: {node: '>= 14'}
+
'@sentry/browser@8.47.0':
resolution: {integrity: sha512-K6BzHisykmbFy/wORtGyfsAlw7ShevLALzu3ReZZZ18dVubO1bjSNjkZQU9MJD5Jcb9oLwkq89n3N9XIBfvdRA==}
engines: {node: '>=14.18'}
@@ -2431,6 +2695,10 @@ packages:
resolution: {integrity: sha512-ouQh5sqcB8vsJ8yTTe0rf+iaUkwmeUlGNFi35IkCFUQlWJ22qS6OfvNjOqFI19e6eGUXks0c/2ieFC4+9wJ+1g==}
engines: {node: '>= 14'}
+ '@sentry/bundler-plugin-core@2.22.7':
+ resolution: {integrity: sha512-ouQh5sqcB8vsJ8yTTe0rf+iaUkwmeUlGNFi35IkCFUQlWJ22qS6OfvNjOqFI19e6eGUXks0c/2ieFC4+9wJ+1g==}
+ engines: {node: '>= 14'}
+
'@sentry/cli-darwin@2.39.1':
resolution: {integrity: sha512-kiNGNSAkg46LNGatfNH5tfsmI/kCAaPA62KQuFZloZiemTNzhy9/6NJP8HZ/GxGs8GDMxic6wNrV9CkVEgFLJQ==}
engines: {node: '>=10'}
@@ -2481,6 +2749,8 @@ packages:
resolution: {integrity: sha512-YnanVlmulkjgZiVZ9BfY9k6I082n+C+LbZo52MTvx3FY6RE5iyiPMpaOh67oXEZRWcYQEGm+bKruRxLVP6RlbA==}
engines: {node: '>=8'}
+ '@sentry/core@8.47.0':
+ resolution: {integrity: sha512-iSEJZMe3DOcqBFZQAqgA3NB2lCWBc4Gv5x/SCri/TVg96wAlss4VrUunSI2Mp0J4jJ5nJcJ2ChqHSBAU48k3FA==}
'@sentry/core@8.47.0':
resolution: {integrity: sha512-iSEJZMe3DOcqBFZQAqgA3NB2lCWBc4Gv5x/SCri/TVg96wAlss4VrUunSI2Mp0J4jJ5nJcJ2ChqHSBAU48k3FA==}
engines: {node: '>=14.18'}
@@ -2493,16 +2763,22 @@ packages:
resolution: {integrity: sha512-cqvi+OHV1Hj64mIGHoZtLgwrh1BG6ntcRjDLlVNMqml5rdTRD3TvG21579FtlqHlwZpbpF7K5xkwl8e5KL2hGw==}
engines: {node: '>=8'}
+ '@sentry/node@8.47.0':
+ resolution: {integrity: sha512-tMzeU3KkmDi2OVvSu+Ah5pwoi7srsSyc1DovBbRQU96RFf/lOFzGe9JERa1MyDUqqLH95NqnPTNsa4Amb8/Vxg==}
'@sentry/node@8.47.0':
resolution: {integrity: sha512-tMzeU3KkmDi2OVvSu+Ah5pwoi7srsSyc1DovBbRQU96RFf/lOFzGe9JERa1MyDUqqLH95NqnPTNsa4Amb8/Vxg==}
engines: {node: '>=14.18'}
+ '@sentry/nuxt@8.47.0':
+ resolution: {integrity: sha512-j3T87j32EJnDaJOvLDcs7alghY2VMzfcJ3zg8Dggl22VNjQwknYfx3Ykr0ZkMTx1Zer/YN/hveLSip/oQEoShw==}
'@sentry/nuxt@8.47.0':
resolution: {integrity: sha512-j3T87j32EJnDaJOvLDcs7alghY2VMzfcJ3zg8Dggl22VNjQwknYfx3Ykr0ZkMTx1Zer/YN/hveLSip/oQEoShw==}
engines: {node: '>=16'}
peerDependencies:
nuxt: '>=3.7.0 || 4.x'
+ '@sentry/opentelemetry@8.47.0':
+ resolution: {integrity: sha512-wunyBIUPeY6Kx3SFhOQqOPs+hyRADO5bztpo8aZ3N3xfzhefSTOdrgUroKvHx1DvoQO6MAlykcuUFps3yfaqmg==}
'@sentry/opentelemetry@8.47.0':
resolution: {integrity: sha512-wunyBIUPeY6Kx3SFhOQqOPs+hyRADO5bztpo8aZ3N3xfzhefSTOdrgUroKvHx1DvoQO6MAlykcuUFps3yfaqmg==}
engines: {node: '>=14.18'}
@@ -2512,7 +2788,13 @@ packages:
'@opentelemetry/instrumentation': ^0.56.0
'@opentelemetry/sdk-trace-base': ^1.29.0
'@opentelemetry/semantic-conventions': ^1.28.0
+ '@opentelemetry/core': ^1.29.0
+ '@opentelemetry/instrumentation': ^0.56.0
+ '@opentelemetry/sdk-trace-base': ^1.29.0
+ '@opentelemetry/semantic-conventions': ^1.28.0
+ '@sentry/rollup-plugin@2.22.7':
+ resolution: {integrity: sha512-7rgIsne8Ghb/CrfFJG5DMLcHyMqrUaw4yifq7sgYCdDyUBQ5Ox0eWVQ/autK/NYLDxDsT2r8FNttpM2hpEsUxg==}
'@sentry/rollup-plugin@2.22.7':
resolution: {integrity: sha512-7rgIsne8Ghb/CrfFJG5DMLcHyMqrUaw4yifq7sgYCdDyUBQ5Ox0eWVQ/autK/NYLDxDsT2r8FNttpM2hpEsUxg==}
engines: {node: '>= 14'}
@@ -2535,6 +2817,8 @@ packages:
resolution: {integrity: sha512-zIieP1VLWQb3wUjFJlwOAoaaJygJhXeUoGd0e/Ha2RLb2eW2S+4gjf6y6NqyY71tZ74LYVZKg/4prB6FAZSMXQ==}
engines: {node: '>= 14'}
+ '@sentry/vue@8.47.0':
+ resolution: {integrity: sha512-MBzCWcVI4WqQTUOnHEO/PmlBRT8MGYNXBjuJhWtJo89J3CEHgZq4Jg2NgYf0q8OGshOAyra/Zv2rHUe7+9sUUg==}
'@sentry/vue@8.47.0':
resolution: {integrity: sha512-MBzCWcVI4WqQTUOnHEO/PmlBRT8MGYNXBjuJhWtJo89J3CEHgZq4Jg2NgYf0q8OGshOAyra/Zv2rHUe7+9sUUg==}
engines: {node: '>=14.18'}
@@ -2545,21 +2829,33 @@ packages:
pinia:
optional: true
+ '@shikijs/core@1.24.4':
+ resolution: {integrity: sha512-jjLsld+xEEGYlxAXDyGwWsKJ1sw5Pc1pnp4ai2ORpjx2UX08YYTC0NNqQYO1PaghYaR+PvgMOGuvzw2he9sk0Q==}
'@shikijs/core@1.24.4':
resolution: {integrity: sha512-jjLsld+xEEGYlxAXDyGwWsKJ1sw5Pc1pnp4ai2ORpjx2UX08YYTC0NNqQYO1PaghYaR+PvgMOGuvzw2he9sk0Q==}
+ '@shikijs/engine-javascript@1.24.4':
+ resolution: {integrity: sha512-TClaQOLvo9WEMJv6GoUsykQ6QdynuKszuORFWCke8qvi6PeLm7FcD9+7y45UenysxEWYpDL5KJaVXTngTE+2BA==}
'@shikijs/engine-javascript@1.24.4':
resolution: {integrity: sha512-TClaQOLvo9WEMJv6GoUsykQ6QdynuKszuORFWCke8qvi6PeLm7FcD9+7y45UenysxEWYpDL5KJaVXTngTE+2BA==}
+ '@shikijs/engine-oniguruma@1.24.4':
+ resolution: {integrity: sha512-Do2ry6flp2HWdvpj2XOwwa0ljZBRy15HKZITzPcNIBOGSeprnA8gOooA/bLsSPuy8aJBa+Q/r34dMmC3KNL/zw==}
'@shikijs/engine-oniguruma@1.24.4':
resolution: {integrity: sha512-Do2ry6flp2HWdvpj2XOwwa0ljZBRy15HKZITzPcNIBOGSeprnA8gOooA/bLsSPuy8aJBa+Q/r34dMmC3KNL/zw==}
+ '@shikijs/transformers@1.24.4':
+ resolution: {integrity: sha512-0jq5p9WLB7ToM/O7RWfxuIwirTJbIQsUR06jxdG3h3CEuO5m7ik8GnDsxwHhyIEfgJSZczSnVUZWFrNKy5It6g==}
'@shikijs/transformers@1.24.4':
resolution: {integrity: sha512-0jq5p9WLB7ToM/O7RWfxuIwirTJbIQsUR06jxdG3h3CEuO5m7ik8GnDsxwHhyIEfgJSZczSnVUZWFrNKy5It6g==}
+ '@shikijs/types@1.24.4':
+ resolution: {integrity: sha512-0r0XU7Eaow0PuDxuWC1bVqmWCgm3XqizIaT7SM42K03vc69LGooT0U8ccSR44xP/hGlNx4FKhtYpV+BU6aaKAA==}
'@shikijs/types@1.24.4':
resolution: {integrity: sha512-0r0XU7Eaow0PuDxuWC1bVqmWCgm3XqizIaT7SM42K03vc69LGooT0U8ccSR44xP/hGlNx4FKhtYpV+BU6aaKAA==}
+ '@shikijs/vscode-textmate@9.3.1':
+ resolution: {integrity: sha512-79QfK1393x9Ho60QFyLti+QfdJzRQCVLFb97kOIV7Eo9vQU/roINgk7m24uv0a7AUvN//RDH36FLjjK48v0s9g==}
'@shikijs/vscode-textmate@9.3.1':
resolution: {integrity: sha512-79QfK1393x9Ho60QFyLti+QfdJzRQCVLFb97kOIV7Eo9vQU/roINgk7m24uv0a7AUvN//RDH36FLjjK48v0s9g==}
@@ -2574,6 +2870,8 @@ packages:
'@socket.io/component-emitter@3.1.2':
resolution: {integrity: sha512-9BCxFwvbGg/RsZK9tjXd8s4UcwR0MWeFQ1XEKIQVVvAGJyINdrqKMcTRyLoK8Rse1GjzLV9cwjWV1olXRWEXVA==}
+ '@stylistic/eslint-plugin@2.12.1':
+ resolution: {integrity: sha512-fubZKIHSPuo07FgRTn6S4Nl0uXPRPYVNpyZzIDGfp7Fny6JjNus6kReLD7NI380JXi4HtUTSOZ34LBuNPO1XLQ==}
'@stylistic/eslint-plugin@2.12.1':
resolution: {integrity: sha512-fubZKIHSPuo07FgRTn6S4Nl0uXPRPYVNpyZzIDGfp7Fny6JjNus6kReLD7NI380JXi4HtUTSOZ34LBuNPO1XLQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2586,6 +2884,8 @@ packages:
'@swc/helpers@0.5.15':
resolution: {integrity: sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==}
+ '@tanstack/eslint-plugin-query@5.62.9':
+ resolution: {integrity: sha512-F3onhTcpBj7zQDo0NVtZwZQKRFx8BwpSabMJybl9no3+dFHUurvNMrH5M/6KNpkdDCf3zyHWadruZL6636B8Fw==}
'@tanstack/eslint-plugin-query@5.62.9':
resolution: {integrity: sha512-F3onhTcpBj7zQDo0NVtZwZQKRFx8BwpSabMJybl9no3+dFHUurvNMrH5M/6KNpkdDCf3zyHWadruZL6636B8Fw==}
peerDependencies:
@@ -2595,6 +2895,8 @@ packages:
resolution: {integrity: sha512-Wo1iKt2b9OT7d+YGhvEPD3DXvPv2etTusIMhMUoG7fbhmxcXCtIjJDEygy91Y2JFlwGyjqiBPRozme7UD8hoqg==}
engines: {node: '>=12'}
+ '@tanstack/query-core@5.62.9':
+ resolution: {integrity: sha512-lwePd8hNYhyQ4nM/iRQ+Wz2cDtspGeZZHFZmCzHJ7mfKXt+9S301fULiY2IR2byJYY6Z03T427E5PoVfMexHjw==}
'@tanstack/query-core@5.62.9':
resolution: {integrity: sha512-lwePd8hNYhyQ4nM/iRQ+Wz2cDtspGeZZHFZmCzHJ7mfKXt+9S301fULiY2IR2byJYY6Z03T427E5PoVfMexHjw==}
@@ -2602,9 +2904,13 @@ packages:
resolution: {integrity: sha512-P9dF7XbibHph2PFRz8gfBKEXEY/HJPOhym8CHmjF8y3q5mWpKx9xtZapXQUWCgkqvsK0R46Azuz+VaxD4Xl+Tg==}
engines: {node: '>=12'}
+ '@tanstack/virtual-core@3.11.2':
+ resolution: {integrity: sha512-vTtpNt7mKCiZ1pwU9hfKPhpdVO2sVzFQsxoVBGtOSHxlrRRzYr8iQ2TlwbAcRYCcEiZ9ECAM8kBzH0v2+VzfKw==}
'@tanstack/virtual-core@3.11.2':
resolution: {integrity: sha512-vTtpNt7mKCiZ1pwU9hfKPhpdVO2sVzFQsxoVBGtOSHxlrRRzYr8iQ2TlwbAcRYCcEiZ9ECAM8kBzH0v2+VzfKw==}
+ '@tanstack/vue-query@5.62.9':
+ resolution: {integrity: sha512-L6soXGCGlMT5Xc/ToUNt7AGJjr6C8mc3gkASe1tDhPRyo4VoMcmnha+qf3yP4Uwd38bmZmohZwnBbuT3O3TvQA==}
'@tanstack/vue-query@5.62.9':
resolution: {integrity: sha512-L6soXGCGlMT5Xc/ToUNt7AGJjr6C8mc3gkASe1tDhPRyo4VoMcmnha+qf3yP4Uwd38bmZmohZwnBbuT3O3TvQA==}
peerDependencies:
@@ -2620,6 +2926,8 @@ packages:
peerDependencies:
vue: '>=3.2'
+ '@tanstack/vue-virtual@3.11.2':
+ resolution: {integrity: sha512-y0b1p1FTlzxcSt/ZdGWY1AZ52ddwSU69pvFRYAELUSdLLxV8QOPe9dyT/KATO43UCb3DAwiyzi96h2IoYstBOQ==}
'@tanstack/vue-virtual@3.11.2':
resolution: {integrity: sha512-y0b1p1FTlzxcSt/ZdGWY1AZ52ddwSU69pvFRYAELUSdLLxV8QOPe9dyT/KATO43UCb3DAwiyzi96h2IoYstBOQ==}
peerDependencies:
@@ -2755,6 +3063,9 @@ packages:
'@types/doctrine@0.0.9':
resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
+ '@types/doctrine@0.0.9':
+ resolution: {integrity: sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==}
+
'@types/eslint-scope@3.7.7':
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
@@ -2773,6 +3084,8 @@ packages:
'@types/express@4.17.21':
resolution: {integrity: sha512-ejlPM315qwLpaQlQDTjPdsUFSc6ZsP4AN6AlWnogPjQ7CVi7PYF3YVz+CY3jE2pwYf7E/7HlDAN0rV2GxTG0HQ==}
+ '@types/geojson@7946.0.15':
+ resolution: {integrity: sha512-9oSxFzDCT2Rj6DfcHF8G++jxBKS7mBqXl5xrRW+Kbvjry6Uduya2iiwqHPhVXpasAVMBYKkEPGgKhd3+/HZ6xA==}
'@types/geojson@7946.0.15':
resolution: {integrity: sha512-9oSxFzDCT2Rj6DfcHF8G++jxBKS7mBqXl5xrRW+Kbvjry6Uduya2iiwqHPhVXpasAVMBYKkEPGgKhd3+/HZ6xA==}
@@ -2818,6 +3131,8 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
+ '@types/node@22.10.2':
+ resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==}
'@types/node@22.10.2':
resolution: {integrity: sha512-Xxr6BBRCAOQixvonOye19wnzyDiUtTeqldOOmj3CkeblonbccA12PFwlufvRdrpjXxqnmUaeiU5EOA+7s5diUQ==}
@@ -2830,6 +3145,9 @@ packages:
'@types/parse-path@7.0.3':
resolution: {integrity: sha512-LriObC2+KYZD3FzCrgWGv/qufdUy4eXrxcLgQMfYXgPbLIecKIsVBaQgUPmxSSLcjmYbDTQbMgr6qr6l/eb7Bg==}
+ '@types/parse-path@7.0.3':
+ resolution: {integrity: sha512-LriObC2+KYZD3FzCrgWGv/qufdUy4eXrxcLgQMfYXgPbLIecKIsVBaQgUPmxSSLcjmYbDTQbMgr6qr6l/eb7Bg==}
+
'@types/pbf@3.0.5':
resolution: {integrity: sha512-j3pOPiEcWZ34R6a6mN07mUkM4o4Lwf6hPNt8eilOeZhTFbxFXmKhvXl9Y28jotFPaI1bpPDJsbCprUoNke6OrA==}
@@ -2908,6 +3226,8 @@ packages:
'@types/ws@8.5.13':
resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==}
+ '@typescript-eslint/eslint-plugin@8.18.2':
+ resolution: {integrity: sha512-adig4SzPLjeQ0Tm+jvsozSGiCliI2ajeURDGHjZ2llnA+A67HihCQ+a3amtPhUakd1GlwHxSRvzOZktbEvhPPg==}
'@typescript-eslint/eslint-plugin@8.18.2':
resolution: {integrity: sha512-adig4SzPLjeQ0Tm+jvsozSGiCliI2ajeURDGHjZ2llnA+A67HihCQ+a3amtPhUakd1GlwHxSRvzOZktbEvhPPg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -2915,61 +3235,92 @@ packages:
'@typescript-eslint/parser': ^8.0.0 || ^8.0.0-alpha.0
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <5.8.0'
+ '@typescript-eslint/parser@8.18.2':
+ resolution: {integrity: sha512-y7tcq4StgxQD4mDr9+Jb26dZ+HTZ/SkfqpXSiqeUXZHxOUyjWDKsmwKhJ0/tApR08DgOhrFAoAhyB80/p3ViuA==}
'@typescript-eslint/parser@8.18.2':
resolution: {integrity: sha512-y7tcq4StgxQD4mDr9+Jb26dZ+HTZ/SkfqpXSiqeUXZHxOUyjWDKsmwKhJ0/tApR08DgOhrFAoAhyB80/p3ViuA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <5.8.0'
+ '@typescript-eslint/scope-manager@8.18.2':
+ resolution: {integrity: sha512-YJFSfbd0CJjy14r/EvWapYgV4R5CHzptssoag2M7y3Ra7XNta6GPAJPPP5KGB9j14viYXyrzRO5GkX7CRfo8/g==}
'@typescript-eslint/scope-manager@8.18.2':
resolution: {integrity: sha512-YJFSfbd0CJjy14r/EvWapYgV4R5CHzptssoag2M7y3Ra7XNta6GPAJPPP5KGB9j14viYXyrzRO5GkX7CRfo8/g==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/type-utils@8.18.2':
+ resolution: {integrity: sha512-AB/Wr1Lz31bzHfGm/jgbFR0VB0SML/hd2P1yxzKDM48YmP7vbyJNHRExUE/wZsQj2wUCvbWH8poNHFuxLqCTnA==}
'@typescript-eslint/type-utils@8.18.2':
resolution: {integrity: sha512-AB/Wr1Lz31bzHfGm/jgbFR0VB0SML/hd2P1yxzKDM48YmP7vbyJNHRExUE/wZsQj2wUCvbWH8poNHFuxLqCTnA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <5.8.0'
+ '@typescript-eslint/types@8.18.2':
+ resolution: {integrity: sha512-Z/zblEPp8cIvmEn6+tPDIHUbRu/0z5lqZ+NvolL5SvXWT5rQy7+Nch83M0++XzO0XrWRFWECgOAyE8bsJTl1GQ==}
'@typescript-eslint/types@8.18.2':
resolution: {integrity: sha512-Z/zblEPp8cIvmEn6+tPDIHUbRu/0z5lqZ+NvolL5SvXWT5rQy7+Nch83M0++XzO0XrWRFWECgOAyE8bsJTl1GQ==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@typescript-eslint/typescript-estree@8.18.2':
+ resolution: {integrity: sha512-WXAVt595HjpmlfH4crSdM/1bcsqh+1weFRWIa9XMTx/XHZ9TCKMcr725tLYqWOgzKdeDrqVHxFotrvWcEsk2Tg==}
'@typescript-eslint/typescript-estree@8.18.2':
resolution: {integrity: sha512-WXAVt595HjpmlfH4crSdM/1bcsqh+1weFRWIa9XMTx/XHZ9TCKMcr725tLYqWOgzKdeDrqVHxFotrvWcEsk2Tg==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <5.8.0'
+ '@typescript-eslint/utils@8.18.2':
+ resolution: {integrity: sha512-Cr4A0H7DtVIPkauj4sTSXVl+VBWewE9/o40KcF3TV9aqDEOWoXF3/+oRXNby3DYzZeCATvbdksYsGZzplwnK/Q==}
'@typescript-eslint/utils@8.18.2':
resolution: {integrity: sha512-Cr4A0H7DtVIPkauj4sTSXVl+VBWewE9/o40KcF3TV9aqDEOWoXF3/+oRXNby3DYzZeCATvbdksYsGZzplwnK/Q==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
typescript: '>=4.8.4 <5.8.0'
+ typescript: '>=4.8.4 <5.8.0'
+ '@typescript-eslint/visitor-keys@8.18.2':
+ resolution: {integrity: sha512-zORcwn4C3trOWiCqFQP1x6G3xTRyZ1LYydnj51cRnJ6hxBlr/cKPckk+PKPUw/fXmvfKTcw7bwY3w9izgx5jZw==}
'@typescript-eslint/visitor-keys@8.18.2':
resolution: {integrity: sha512-zORcwn4C3trOWiCqFQP1x6G3xTRyZ1LYydnj51cRnJ6hxBlr/cKPckk+PKPUw/fXmvfKTcw7bwY3w9izgx5jZw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ '@ungap/structured-clone@1.2.1':
+ resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==}
'@ungap/structured-clone@1.2.1':
resolution: {integrity: sha512-fEzPV3hSkSMltkw152tJKNARhOupqbH96MZWyRjNaYZOMIzbrTeQDG+MTc6Mr2pgzFQzFxAfmhGDNP5QK++2ZA==}
+ '@unhead/dom@1.11.14':
+ resolution: {integrity: sha512-FaHCWo9JR4h7PCpSRaXuMC6ifXOuBzlI0PD1MmUcxND2ayDl1d6DauIbN8TUf9TDRxNkrK1Ehb0OCXjC1ZJtrg==}
'@unhead/dom@1.11.14':
resolution: {integrity: sha512-FaHCWo9JR4h7PCpSRaXuMC6ifXOuBzlI0PD1MmUcxND2ayDl1d6DauIbN8TUf9TDRxNkrK1Ehb0OCXjC1ZJtrg==}
+ '@unhead/schema@1.11.14':
+ resolution: {integrity: sha512-V9W9u5tF1/+TiLqxu+Qvh1ShoMDkPEwHoEo4DKdDG6ko7YlbzFfDxV6el9JwCren45U/4Vy/4Xi7j8OH02wsiA==}
'@unhead/schema@1.11.14':
resolution: {integrity: sha512-V9W9u5tF1/+TiLqxu+Qvh1ShoMDkPEwHoEo4DKdDG6ko7YlbzFfDxV6el9JwCren45U/4Vy/4Xi7j8OH02wsiA==}
+ '@unhead/shared@1.11.14':
+ resolution: {integrity: sha512-41Qt4PJKYVrEGOTXgBJLRYrEu3S7n5stoB4TFC6312CIBVedXqg7voHQurn32LVDjpfJftjLa2ggCjpqdqoRDw==}
'@unhead/shared@1.11.14':
resolution: {integrity: sha512-41Qt4PJKYVrEGOTXgBJLRYrEu3S7n5stoB4TFC6312CIBVedXqg7voHQurn32LVDjpfJftjLa2ggCjpqdqoRDw==}
+ '@unhead/ssr@1.11.14':
+ resolution: {integrity: sha512-JBF2f5PWPtpqBx/dan+4vL/dartSp8Nmd011zkT9qPYmizxO+/fsB1WQalbis1KszkfFatb6c4rO+hm0d6acOA==}
'@unhead/ssr@1.11.14':
resolution: {integrity: sha512-JBF2f5PWPtpqBx/dan+4vL/dartSp8Nmd011zkT9qPYmizxO+/fsB1WQalbis1KszkfFatb6c4rO+hm0d6acOA==}
+ '@unhead/vue@1.11.14':
+ resolution: {integrity: sha512-6nfi7FsZ936gscmj+1nUB1pybiFMFbnuEFo7B/OY2klpLWsYDUOVvpsJhbu7C3u7wkTlJXglmAk6jdd8I7WgZA==}
'@unhead/vue@1.11.14':
resolution: {integrity: sha512-6nfi7FsZ936gscmj+1nUB1pybiFMFbnuEFo7B/OY2klpLWsYDUOVvpsJhbu7C3u7wkTlJXglmAk6jdd8I7WgZA==}
peerDependencies:
@@ -2996,12 +3347,19 @@ packages:
resolution: {integrity: sha512-H+UpEPo47DeEsLbjHMby42MJ+lx7vXltFOdpgXFKutLkT034VoXmN1lgrAh9lZ4ow3iuUfEatHyuWffpOQf9gA==}
engines: {node: '>=14'}
+ '@unocss/config@0.65.3':
+ resolution: {integrity: sha512-H+UpEPo47DeEsLbjHMby42MJ+lx7vXltFOdpgXFKutLkT034VoXmN1lgrAh9lZ4ow3iuUfEatHyuWffpOQf9gA==}
+ engines: {node: '>=14'}
+
'@unocss/core@0.65.1':
resolution: {integrity: sha512-Ke0WNZjfSCE6pniJb8PjiwhO6/McxVb1EQYrkkz8aJuR83xu+AEcTog9D4N9EUkRfHS5tZYXQtTj4Uh90T6CEg==}
'@unocss/core@0.65.3':
resolution: {integrity: sha512-xYkJ63lIadL6KqvGcaE2fFeLvo6rC1F+e+R9EFn0Aj0ArMRhiltZk8vvLFHP7iYjjdTdqDkAr/7IdrTosTo8Pg==}
+ '@unocss/core@0.65.3':
+ resolution: {integrity: sha512-xYkJ63lIadL6KqvGcaE2fFeLvo6rC1F+e+R9EFn0Aj0ArMRhiltZk8vvLFHP7iYjjdTdqDkAr/7IdrTosTo8Pg==}
+
'@unocss/eslint-plugin@0.65.1':
resolution: {integrity: sha512-N39mNa+pBXMzHjLXO2dE93NvxOhO9hHUQWkyrH+8u8tbXMOy+bt9aVehr2/LZfd6nbwUyZx6DxEZqu3OaSyD7A==}
engines: {node: '>=14'}
@@ -3027,6 +3385,12 @@ packages:
peerDependencies:
postcss: ^8.4.21
+ '@unocss/postcss@0.65.3':
+ resolution: {integrity: sha512-WCAycMhigioWn8IV3w3ptsstvRvEW86vHpELOMSXKcbminaOJ7RkfpoCKwfSzL73CBSYwovVCWS/y4LFP85NQQ==}
+ engines: {node: '>=14'}
+ peerDependencies:
+ postcss: ^8.4.21
+
'@unocss/preset-attributify@0.65.1':
resolution: {integrity: sha512-bmu9JELcpwgrXA5RonvFeWb38RcUz82wpWfyDwKdQRJHD3MnYQ5lN03W4B7nMsAflc4ls7XQZLzhn9iYhbYYqg==}
@@ -3062,6 +3426,10 @@ packages:
resolution: {integrity: sha512-jndyth0X11FbvIDForYq90b+N5xsR31FRsmvp7AC7dcW71clemUEDHCwqzSJn8cVFwahgvlwWbEoYHPEgQrtIQ==}
engines: {node: '>=14'}
+ '@unocss/rule-utils@0.65.3':
+ resolution: {integrity: sha512-jndyth0X11FbvIDForYq90b+N5xsR31FRsmvp7AC7dcW71clemUEDHCwqzSJn8cVFwahgvlwWbEoYHPEgQrtIQ==}
+ engines: {node: '>=14'}
+
'@unocss/transformer-attributify-jsx@0.65.1':
resolution: {integrity: sha512-FR6pAnsHgflIumSl6Y5J+cWUtt2wNPANFWdGd1jNLpcBXDummEd0U+U9VGOfB8AOT263DW0U0JE7vH5xiwVaog==}
@@ -3090,12 +3458,17 @@ packages:
'@unovis/graphlibrary@2.2.0-2':
resolution: {integrity: sha512-HeEzpd/vDyWiIJt0rnh+2ICXUIuF2N0+Z9OJJiKg0DB+eFUcD+bk+9QPhYHwkFwfxdjDA9fHi1DZ/O/bbV58Nw==}
+ '@unovis/ts@1.5.0':
+ resolution: {integrity: sha512-dMRlhBKwazkGxg65xXl4KHvmqX0+2C5qJsUqTFjcg/59G9RCjej9uFF4qsk0x3zY/FnAvK4AjKQYygQfBWzd+w==}
'@unovis/ts@1.5.0':
resolution: {integrity: sha512-dMRlhBKwazkGxg65xXl4KHvmqX0+2C5qJsUqTFjcg/59G9RCjej9uFF4qsk0x3zY/FnAvK4AjKQYygQfBWzd+w==}
+ '@unovis/vue@1.5.0':
+ resolution: {integrity: sha512-ZHdHPTpefhggJZEWJJI/q7N0mJbRj1TgItt4uzObXzrq0TadxrzSstXMUw4cPgbJcfi8d622YDQhRpr4tApKBw==}
'@unovis/vue@1.5.0':
resolution: {integrity: sha512-ZHdHPTpefhggJZEWJJI/q7N0mJbRj1TgItt4uzObXzrq0TadxrzSstXMUw4cPgbJcfi8d622YDQhRpr4tApKBw==}
peerDependencies:
+ '@unovis/ts': 1.5.0
'@unovis/ts': 1.5.0
vue: ^3
@@ -3104,6 +3477,13 @@ packages:
peerDependencies:
zod: ^3.24.0
+ '@vercel/nft@0.27.10':
+ resolution: {integrity: sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==}
+ '@vee-validate/zod@4.15.0':
+ resolution: {integrity: sha512-MpvIKiyg9X5yD8bJW0no2AU7wtR2T5mrvD9tuPRiie951sU2n6QKgMV38qKKOiqFBCxsMSjIuLLLV3V5kVE4nQ==}
+ peerDependencies:
+ zod: ^3.24.0
+
'@vercel/nft@0.27.10':
resolution: {integrity: sha512-zbaF9Wp/NsZtKLE4uVmL3FyfFwlpDyuymQM1kPbeT0mVOHKDQQNjnnfslB3REg3oZprmNFJuh3pkHBk2qAaizg==}
engines: {node: '>=16'}
@@ -3131,8 +3511,8 @@ packages:
vite: ^5.0.0 || ^6.0.0
vue: ^3.2.25
- '@vitest/eslint-plugin@1.1.21':
- resolution: {integrity: sha512-gIpmafm7WSwXGHq413q3fC26+nER5mQtM7Lqi7UusY5bSzeQIJmViC+G6CfPo06U0CfgZ+rt7FPaskpkZ2f6gg==}
+ '@vitest/eslint-plugin@1.1.20':
+ resolution: {integrity: sha512-2eLsgUm+GVOpDfNyH2do//MiNO/WZkXrPi+EjDmXEdUt6Jwnziq4H221L8vJE0aJys+l1FRfSkm4QbaIyDCfBg==}
peerDependencies:
'@typescript-eslint/utils': '>= 8.0'
eslint: '>= 8.57.0'
@@ -3144,15 +3524,23 @@ packages:
vitest:
optional: true
+ '@volar/language-core@2.4.11':
+ resolution: {integrity: sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==}
'@volar/language-core@2.4.11':
resolution: {integrity: sha512-lN2C1+ByfW9/JRPpqScuZt/4OrUUse57GLI6TbLgTIqBVemdl1wNcZ1qYGEo2+Gw8coYLgCy7SuKqn6IrQcQgg==}
+ '@volar/source-map@2.4.11':
+ resolution: {integrity: sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==}
'@volar/source-map@2.4.11':
resolution: {integrity: sha512-ZQpmafIGvaZMn/8iuvCFGrW3smeqkq/IIh9F1SdSx9aUl0J4Iurzd6/FhmjNO5g2ejF3rT45dKskgXWiofqlZQ==}
+ '@volar/typescript@2.4.11':
+ resolution: {integrity: sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==}
'@volar/typescript@2.4.11':
resolution: {integrity: sha512-2DT+Tdh88Spp5PyPbqhyoYavYCPDsqbHLFwcUI9K1NlY1YgUJvujGdrqUp0zWxnW7KWNTr3xSpMuv2WnaTKDAw==}
+ '@vue-macros/common@1.15.1':
+ resolution: {integrity: sha512-O0ZXaladWXwHplQnSjxLbB/G1KpdWCUNJPNYVHIxHonGex1BGpoB4fBZZLgddHgAiy18VZG/Iu5L0kwG+SV7JQ==}
'@vue-macros/common@1.15.1':
resolution: {integrity: sha512-O0ZXaladWXwHplQnSjxLbB/G1KpdWCUNJPNYVHIxHonGex1BGpoB4fBZZLgddHgAiy18VZG/Iu5L0kwG+SV7JQ==}
engines: {node: '>=16.14.0'}
@@ -3196,20 +3584,30 @@ packages:
'@vue/devtools-api@6.6.4':
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
+ '@vue/devtools-api@7.6.8':
+ resolution: {integrity: sha512-ma6dY/sZR36zALVsV1W7eC57c6IJPXsy8SNgZn1PLVWU4z4dPn5TIBmnF4stmdJ4sQcixqKaQ8pwjbMPzEZwiA==}
'@vue/devtools-api@7.6.8':
resolution: {integrity: sha512-ma6dY/sZR36zALVsV1W7eC57c6IJPXsy8SNgZn1PLVWU4z4dPn5TIBmnF4stmdJ4sQcixqKaQ8pwjbMPzEZwiA==}
+ '@vue/devtools-core@7.6.8':
+ resolution: {integrity: sha512-8X4roysTwzQ94o7IobjVcOd1aZF5iunikrMrHPI2uUdigZCi2kFTQc7ffYiFiTNaLElCpjOhCnM7bo7aK1yU7A==}
'@vue/devtools-core@7.6.8':
resolution: {integrity: sha512-8X4roysTwzQ94o7IobjVcOd1aZF5iunikrMrHPI2uUdigZCi2kFTQc7ffYiFiTNaLElCpjOhCnM7bo7aK1yU7A==}
peerDependencies:
vue: ^3.0.0
+ '@vue/devtools-kit@7.6.8':
+ resolution: {integrity: sha512-JhJ8M3sPU+v0P2iZBF2DkdmR9L0dnT5RXJabJqX6o8KtFs3tebdvfoXV2Dm3BFuqeECuMJIfF1aCzSt+WQ4wrw==}
'@vue/devtools-kit@7.6.8':
resolution: {integrity: sha512-JhJ8M3sPU+v0P2iZBF2DkdmR9L0dnT5RXJabJqX6o8KtFs3tebdvfoXV2Dm3BFuqeECuMJIfF1aCzSt+WQ4wrw==}
+ '@vue/devtools-shared@7.6.8':
+ resolution: {integrity: sha512-9MBPO5Z3X1nYGFqTJyohl6Gmf/J7UNN1oicHdyzBVZP4jnhZ4c20MgtaHDIzWmHDHCMYVS5bwKxT3jxh7gOOKA==}
'@vue/devtools-shared@7.6.8':
resolution: {integrity: sha512-9MBPO5Z3X1nYGFqTJyohl6Gmf/J7UNN1oicHdyzBVZP4jnhZ4c20MgtaHDIzWmHDHCMYVS5bwKxT3jxh7gOOKA==}
+ '@vue/language-core@2.2.0':
+ resolution: {integrity: sha512-O1ZZFaaBGkKbsRfnVH1ifOK1/1BUkyK+3SQsfnh6PmMmD4qJcTU8godCeA96jjDRTL6zgnK7YzCHfaUlH2r0Mw==}
'@vue/language-core@2.2.0':
resolution: {integrity: sha512-O1ZZFaaBGkKbsRfnVH1ifOK1/1BUkyK+3SQsfnh6PmMmD4qJcTU8godCeA96jjDRTL6zgnK7YzCHfaUlH2r0Mw==}
peerDependencies:
@@ -3241,6 +3639,8 @@ packages:
'@vueuse/core@11.3.0':
resolution: {integrity: sha512-7OC4Rl1f9G8IT6rUfi9JrKiXy4bfmHhZ5x2Ceojy0jnd3mHNEvV4JaRygH362ror6/NZ+Nl+n13LPzGiPN8cKA==}
+ '@vueuse/core@12.2.0':
+ resolution: {integrity: sha512-jksyNu+5EGwggNkRWd6xX+8qBkYbmrwdFQMgCABsz+wq8bKF6w3soPFLB8vocFp3wFIzn0OYkSPM9JP+AFKwsg==}
'@vueuse/core@12.2.0':
resolution: {integrity: sha512-jksyNu+5EGwggNkRWd6xX+8qBkYbmrwdFQMgCABsz+wq8bKF6w3soPFLB8vocFp3wFIzn0OYkSPM9JP+AFKwsg==}
@@ -3255,6 +3655,8 @@ packages:
'@vueuse/metadata@11.3.0':
resolution: {integrity: sha512-pwDnDspTqtTo2HwfLw4Rp6yywuuBdYnPYDq+mO38ZYKGebCUQC/nVj/PXSiK9HX5otxLz8Fn7ECPbjiRz2CC3g==}
+ '@vueuse/metadata@12.2.0':
+ resolution: {integrity: sha512-x6zynZtTh1l52m0y8d/EgzpshnMjg8cNZ2KWoncJ62Z5qPSGoc4FUunmMVrrRM/I/5542rTEY89CGftngZvrkQ==}
'@vueuse/metadata@12.2.0':
resolution: {integrity: sha512-x6zynZtTh1l52m0y8d/EgzpshnMjg8cNZ2KWoncJ62Z5qPSGoc4FUunmMVrrRM/I/5542rTEY89CGftngZvrkQ==}
@@ -3269,6 +3671,8 @@ packages:
'@vueuse/shared@11.3.0':
resolution: {integrity: sha512-P8gSSWQeucH5821ek2mn/ciCk+MS/zoRKqdQIM3bHq6p7GXDAJLmnRRKmF5F65sAVJIfzQlwR3aDzwCn10s8hA==}
+ '@vueuse/shared@12.2.0':
+ resolution: {integrity: sha512-SRr4AZwv/giS+EmyA1ZIzn3/iALjjnWAGaBNmoDTMEob9JwQaevAocuaMDnPAvU7Z35Y5g3CFRusCWgp1gVJ3Q==}
'@vueuse/shared@12.2.0':
resolution: {integrity: sha512-SRr4AZwv/giS+EmyA1ZIzn3/iALjjnWAGaBNmoDTMEob9JwQaevAocuaMDnPAvU7Z35Y5g3CFRusCWgp1gVJ3Q==}
@@ -3323,6 +3727,9 @@ packages:
'@xtuc/long@4.2.2':
resolution: {integrity: sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==}
+ abbrev@2.0.0:
+ resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
+ engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
abbrev@2.0.0:
resolution: {integrity: sha512-6/mh1E2u2YgEsCHdY0Yx5oW+61gZU+1vXaoiHHrpKeuRNNgFvS+/jrwHiQhB5apAf5oB7UB7E19ol2R2LKH8hQ==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -3350,6 +3757,8 @@ packages:
resolution: {integrity: sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==}
engines: {node: '>= 6.0.0'}
+ agent-base@7.1.3:
+ resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==}
agent-base@7.1.3:
resolution: {integrity: sha512-jRR5wdylq8CkOe6hei19GGZnxM6rBGwFl3Bg0YItGDimvjGtAvdZk4Pu6Cl4u4Igsws4a1fd1Vq3ezrhn4KmFw==}
engines: {node: '>= 14'}
@@ -3362,6 +3771,14 @@ packages:
ajv:
optional: true
+ ajv-formats@2.1.1:
+ resolution: {integrity: sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==}
+ peerDependencies:
+ ajv: ^8.0.0
+ peerDependenciesMeta:
+ ajv:
+ optional: true
+
ajv-keywords@3.5.2:
resolution: {integrity: sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==}
peerDependencies:
@@ -3372,14 +3789,19 @@ packages:
peerDependencies:
ajv: ^8.8.2
+ ajv-keywords@5.1.0:
+ resolution: {integrity: sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==}
+ peerDependencies:
+ ajv: ^8.8.2
+
ajv@6.12.6:
resolution: {integrity: sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==}
ajv@8.17.1:
resolution: {integrity: sha512-B/gBuNg5SiMTrPkC+A2+cW0RszwxYmn6VYxB/inlBStS5nx6xHIt/ehKRhIMhqusl7a8LjQoZnjCs5vhwxOQ1g==}
- alien-signals@0.4.12:
- resolution: {integrity: sha512-Og0PgAihxlp1R22bsoBsyhhMG4+qhU+fkkLPoGBQkYVc3qt9rYnrwYTf+M6kqUqUZpf3rXDnpL90iKa0QcSVVg==}
+ alien-signals@0.4.11:
+ resolution: {integrity: sha512-79GUbcQM5K2zb+HyUMODTgJdVjZWwybDNQRduqP9ks7XZvJylm9uWesOjVcu6/veWsa+XNGVE4xVQ8+RGu8HaA==}
ansi-colors@4.1.3:
resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
@@ -3431,6 +3853,8 @@ packages:
resolution: {integrity: sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==}
engines: {node: '>=10'}
+ array-buffer-byte-length@1.0.2:
+ resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
array-buffer-byte-length@1.0.2:
resolution: {integrity: sha512-LHE+8BuR7RYGDKvnrmcuSq3tDcKv9OFEXQt/HpbZhY7V6h0zlUXutnAD82GiFx9rdieCMjkvtcsPqBwgUl1Iiw==}
engines: {node: '>= 0.4'}
@@ -3439,6 +3863,8 @@ packages:
resolution: {integrity: sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==}
engines: {node: '>=8'}
+ arraybuffer.prototype.slice@1.0.4:
+ resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
arraybuffer.prototype.slice@1.0.4:
resolution: {integrity: sha512-BNoCY6SXXPQ7gF2opIP4GBE+Xw7U+pHMYKuzjgCN3GwiaIR09UUeKfheyIry77QtrCBlC0KK0q5/TER/tYh3PQ==}
engines: {node: '>= 0.4'}
@@ -3475,6 +3901,9 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
+ aws4fetch@1.0.20:
+ resolution: {integrity: sha512-/djoAN709iY65ETD6LKCtyyEI04XIBP5xVvfmNxsEP0uJB5tyaGBztSryRr4HqMStr9R06PisQE7m9zDTXKu6g==}
+
b4a@1.6.7:
resolution: {integrity: sha512-OnAYlL5b7LEkALw87fUVafQw5rVR9RjwGd4KUwNQ6DrrNmaVaUCgLipfVlzrPQ4tWOR9P0IXGNOx50jYCCdSJg==}
@@ -3515,6 +3944,8 @@ packages:
bare-path@2.1.3:
resolution: {integrity: sha512-lh/eITfU8hrj9Ru5quUp0Io1kJWIk1bTjzo7JH1P5dWmQ2EL4hFUlfI8FonAhSlgIfhn63p84CDY/x+PisgcXA==}
+ bare-stream@2.6.1:
+ resolution: {integrity: sha512-eVZbtKM+4uehzrsj49KtCy3Pbg7kO1pJ3SKZ1SFrIH/0pnj9scuGGgUlNDf/7qS8WKtGdiJY5Kyhs/ivYPTB/g==}
bare-stream@2.6.1:
resolution: {integrity: sha512-eVZbtKM+4uehzrsj49KtCy3Pbg7kO1pJ3SKZ1SFrIH/0pnj9scuGGgUlNDf/7qS8WKtGdiJY5Kyhs/ivYPTB/g==}
@@ -3563,6 +3994,8 @@ packages:
brotli@1.3.3:
resolution: {integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==}
+ browserslist@4.24.3:
+ resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==}
browserslist@4.24.3:
resolution: {integrity: sha512-1CPmv8iobE2fyRMV97dAcMVegvvWKxmq94hkLiAkUGwKVTyDLw33K+ZxiFrREKmmps4rIw6grcCFCnTMSZ/YiA==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
@@ -3589,6 +4022,8 @@ packages:
resolution: {integrity: sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==}
engines: {node: '>=18'}
+ bundle-require@5.1.0:
+ resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
bundle-require@5.1.0:
resolution: {integrity: sha512-3WrrOuZiyaaZPWiEt4G3+IffISVC9HYlWueJEBWED4ZH4aIAC2PnkdnuRrR94M+w6yGWn4AglWtJtBI8YqvgoA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
@@ -3615,6 +4050,16 @@ packages:
resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
engines: {node: '>= 0.4'}
+ call-bound@1.0.3:
+ resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
+ call-bind-apply-helpers@1.0.1:
+ resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
+ engines: {node: '>= 0.4'}
+
+ call-bind@1.0.8:
+ resolution: {integrity: sha512-oKlSFMcMwpUg2ednkhQ454wfWiU/ul3CkJe/PEHcTKuiX6RpbehUiFMXu13HalGZxfUwCQzZG747YXBn1im9ww==}
+ engines: {node: '>= 0.4'}
+
call-bound@1.0.3:
resolution: {integrity: sha512-YTd+6wGlNlPxSuri7Y6X8tY2dmm12UMH66RpKMhiX6rsk5wXXnYgbUcOt8kiS31/AjfoTOvCsE+w8nZQLQnzHA==}
engines: {node: '>= 0.4'}
@@ -3626,6 +4071,8 @@ packages:
caniuse-api@3.0.0:
resolution: {integrity: sha512-bsTwuIg/BZZK/vreVTYYbSWoe2F+71P7K5QGEX+pT250DZbfU1MQ5prOKpPR+LL6uWKK3KMwMCAS74QB3Um1uw==}
+ caniuse-lite@1.0.30001690:
+ resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==}
caniuse-lite@1.0.30001690:
resolution: {integrity: sha512-5ExiE3qQN6oF8Clf8ifIDcMRCRE/dMGcETG/XGMD8/XiXm6HXQgQTh1yZYLXXpSOsEUlJm1Xr7kGULZTuGtP/w==}
@@ -3636,6 +4083,8 @@ packages:
resolution: {integrity: sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==}
engines: {node: '>=10'}
+ chalk@5.4.1:
+ resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
chalk@5.4.1:
resolution: {integrity: sha512-zgVZuo2WcZgfUEmsn6eO3kINexW8RAE4maiQ8QNs8CtpPCSyMiYsULR3HQYkm3w8FIA3SberyMJMSldGsW+U3w==}
engines: {node: ^12.17.0 || ^14.13 || >=16.0.0}
@@ -3666,6 +4115,8 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
+ chokidar@4.0.3:
+ resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
chokidar@4.0.3:
resolution: {integrity: sha512-Qgzu8kfBvo+cA4962jnP1KkS6Dop5NS6g7R5LFYJr4b8Ub94PPQXUksCw9PvXoeXPRRddRNC5C1JQUR2SMGtnA==}
engines: {node: '>= 14.16.0'}
@@ -3681,6 +4132,10 @@ packages:
resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
engines: {node: '>=18'}
+ chownr@3.0.0:
+ resolution: {integrity: sha512-+IxzY9BZOQd/XuYPRmrvEVjF/nqj5kgT4kEq7VofrDoM1MxoRjEWkrCC3EtLi59TVawxTAn+orJwFQcrqEN1+g==}
+ engines: {node: '>=18'}
+
chrome-trace-event@1.0.4:
resolution: {integrity: sha512-rNjApaLzuwaOTjCiT8lSDdGN1APCiqkChLMJxJPWLunPAt5fy8xgU9/jNOchV84wfIxrA0lRQB7oCT8jrn/wrQ==}
engines: {node: '>=6.0'}
@@ -3791,8 +4246,8 @@ packages:
confbox@0.1.8:
resolution: {integrity: sha512-RMtmw0iFkeR4YV+fUOSucriAQNb9g8zFR52MWCtl+cCZOFRNL6zeB395vPzFhEjjn4fMxXudmELnl/KF/WrK6w==}
- consola@3.3.3:
- resolution: {integrity: sha512-Qil5KwghMzlqd51UXM0b6fyaGHtOC22scxrwrz4A2882LyUMwQjnvaedN1HAeXzphspQ6CpHkzMAWxBTUruDLg==}
+ consola@3.3.2:
+ resolution: {integrity: sha512-X3dcWPU+QeEaPrdtX3zBRQ0P0kIeEnmJV49uNtpy4N/TPnzA3grJvHftKjHuFIQNLrqBPzzykmc3fNrkQDl5yA==}
engines: {node: ^14.18.0 || >=16.10.0}
convert-source-map@1.9.0:
@@ -3839,6 +4294,8 @@ packages:
resolution: {integrity: sha512-NKgHbWkSZXJUcaBHSsyzC8eegD6bBd4O0oCI6XMIJ+y4Bq3v4w7sY3wfWoKPuVlq9pQHRB6od0lmKpIqi8TlKA==}
hasBin: true
+ cross-fetch@3.2.0:
+ resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==}
cross-fetch@3.2.0:
resolution: {integrity: sha512-Q+xVJLoGOeIMXZmbUK4HYk+69cQH6LudR0Vu/pRm2YlU/hDV9CiS0gKUMaWY5f2NeUH9C1nV3bsTlCo0FsTV1Q==}
@@ -3870,6 +4327,8 @@ packages:
resolution: {integrity: sha512-6Fv1DV/TYw//QF5IzQdqsNDjx/wc8TrMBZsqjL9eW01tWb7R7k/mq+/VXfJCl7SoD5emsJop9cOByJZfs8hYIw==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
+ css-tree@3.1.0:
+ resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==}
css-tree@3.1.0:
resolution: {integrity: sha512-0eW44TGN5SQXU1mWSkKwFstI/22X2bG1nYzZTYMAWjylYURhse752YgbE4Cx46AC+bAvI+/dYTPRk1LqSUnu6w==}
engines: {node: ^10 || ^12.20.0 || ^14.13.0 || >=15.0.0}
@@ -4071,14 +4530,20 @@ packages:
resolution: {integrity: sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==}
engines: {node: '>= 12'}
+ data-view-buffer@1.0.2:
+ resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
data-view-buffer@1.0.2:
resolution: {integrity: sha512-EmKO5V3OLXh1rtK2wgXRansaK1/mtVdTUEiEI0W8RkvgT05kfxaH29PliLnpLP73yYO6142Q72QNa8Wx/A5CqQ==}
engines: {node: '>= 0.4'}
+ data-view-byte-length@1.0.2:
+ resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
data-view-byte-length@1.0.2:
resolution: {integrity: sha512-tuhGbE6CfTM9+5ANGf+oQb72Ky/0+s3xKUpHvShfiz2RxMFgFPjsXuRLBVMtvMs15awe45SRb83D6wH4ew6wlQ==}
engines: {node: '>= 0.4'}
+ data-view-byte-offset@1.0.1:
+ resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
data-view-byte-offset@1.0.1:
resolution: {integrity: sha512-BS8PfmtDGnrgYdOonGZQdLZslWIeCGFP9tpan0hi1Co2Zr2NKADsvGYA8XxuG/4UWgJ6Cjtv+YJnB6MM69QGlQ==}
engines: {node: '>= 0.4'}
@@ -4158,6 +4623,15 @@ packages:
supports-color:
optional: true
+ debug@4.4.0:
+ resolution: {integrity: sha512-6WTZ/IxCY/T6BALoZHaE4ctp9xm+Z5kY/pzYaCHRFeyVhojxlrm+46y68HA6hr0TcwEssoxNiDEUJQjfPZ/RYA==}
+ engines: {node: '>=6.0'}
+ peerDependencies:
+ supports-color: '*'
+ peerDependenciesMeta:
+ supports-color:
+ optional: true
+
decode-named-character-reference@1.0.2:
resolution: {integrity: sha512-O8x12RzrUF8xyVcY0KJowWsmaJxQbmy0/EtnNtHRpsOcT7dFk5W598coHqBVpmWo1oQQfsCqfCmkZN5DJrZVdg==}
@@ -4276,6 +4750,8 @@ packages:
resolution: {integrity: sha512-cgwlv/1iFQiFnU96XXgROh8xTeetsnJiDsTc7TYCLFd9+/WNkIqPTxiM/8pSd8VIrhXGTf1Ny1q1hquVqDJB5w==}
engines: {node: '>= 4'}
+ domutils@3.2.1:
+ resolution: {integrity: sha512-xWXmuRnN9OMP6ptPd2+H0cCbcYBULa5YDTbMm/2lvkWvNA3O4wcW+GvzooqBuNM8yy6pl3VIAeJTUUWUbfI5Fw==}
domutils@3.2.1:
resolution: {integrity: sha512-xWXmuRnN9OMP6ptPd2+H0cCbcYBULa5YDTbMm/2lvkWvNA3O4wcW+GvzooqBuNM8yy6pl3VIAeJTUUWUbfI5Fw==}
@@ -4298,6 +4774,10 @@ packages:
resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
engines: {node: '>= 0.4'}
+ dunder-proto@1.0.1:
+ resolution: {integrity: sha512-KIN/nDJBQRcXw0MLVhZE9iQHmG68qAVIBg9CqmUYjmQIhgij9U5MFvrqkUL5FbtyyzZuOeOt0zdeRe4UY7ct+A==}
+ engines: {node: '>= 0.4'}
+
duplexer@0.1.2:
resolution: {integrity: sha512-jtD6YG370ZCIi/9GTaJKQxWTZD045+4R4hTk/x1UyoqadyJ9x9CgSi1RlVDQF8U2sxLLSnFkCaMihqljHIWgMg==}
@@ -4315,6 +4795,8 @@ packages:
engines: {node: '>=0.10.0'}
hasBin: true
+ electron-to-chromium@1.5.76:
+ resolution: {integrity: sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==}
electron-to-chromium@1.5.76:
resolution: {integrity: sha512-CjVQyG7n7Sr+eBXE86HIulnL5N8xZY1sgmOPGuq/F0Rr0FJq63lg0kEtOIDfZBk44FnDLf6FUJ+dsJcuiUDdDQ==}
@@ -4354,6 +4836,8 @@ packages:
resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==}
engines: {node: '>=10.0.0'}
+ enhanced-resolve@5.18.0:
+ resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==}
enhanced-resolve@5.18.0:
resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==}
engines: {node: '>=10.13.0'}
@@ -4375,10 +4859,12 @@ packages:
errx@0.1.0:
resolution: {integrity: sha512-fZmsRiDNv07K6s2KkKFTiD2aIvECa7++PKyD5NC32tpRw46qZA3sOz+aM+/V9V0GDHxVTKLziveV4JhzBHDp9Q==}
- es-abstract@1.23.8:
- resolution: {integrity: sha512-lfab8IzDn6EpI1ibZakcgS6WsfEBiB+43cuJo+wgylx1xKXf+Sp+YR3vFuQwC/u3sxYwV8Cxe3B0DpVUu/WiJQ==}
+ es-abstract@1.23.7:
+ resolution: {integrity: sha512-OygGC8kIcDhXX+6yAZRGLqwi2CmEXCbLQixeGUgYeR+Qwlppqmo7DIDr8XibtEBZp+fJcoYpoatp5qwLMEdcqQ==}
engines: {node: '>= 0.4'}
+ es-define-property@1.0.1:
+ resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
es-define-property@1.0.1:
resolution: {integrity: sha512-e3nRfgfUZ4rNGL232gUgX06QNyyez04KdjFrF+LTRoOXmrOgFKDg4BCdsjW8EnT69eqdYGmRpJwiPVYNrCaW3g==}
engines: {node: '>= 0.4'}
@@ -4412,6 +4898,8 @@ packages:
engines: {node: '>=18'}
hasBin: true
+ esbuild@0.24.2:
+ resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
esbuild@0.24.2:
resolution: {integrity: sha512-+9egpBW8I3CD5XPe0n6BfT5fxLzxrlDzqydF3aviG+9ni1lDC/OvMHcxqEFV0+LANZG5R1bFMWfUrjVsdwxJvA==}
engines: {node: '>=18'}
@@ -4480,6 +4968,8 @@ packages:
peerDependencies:
eslint: '*'
+ eslint-plugin-command@0.2.7:
+ resolution: {integrity: sha512-UXJ/1R6kdKDcHhiRqxHJ9RZ3juMR1IWQuSrnwt56qCjxt/am+5+YDt6GKs1FJPnppe6/geEYsO3CR9jc63i0xw==}
eslint-plugin-command@0.2.7:
resolution: {integrity: sha512-UXJ/1R6kdKDcHhiRqxHJ9RZ3juMR1IWQuSrnwt56qCjxt/am+5+YDt6GKs1FJPnppe6/geEYsO3CR9jc63i0xw==}
peerDependencies:
@@ -4491,12 +4981,16 @@ packages:
peerDependencies:
eslint: '>=8'
+ eslint-plugin-import-x@4.6.1:
+ resolution: {integrity: sha512-wluSUifMIb7UfwWXqx7Yx0lE/SGCcGXECLx/9bCmbY2nneLwvAZ4vkd1IXDjPKFvdcdUgr1BaRnaRpx3k2+Pfw==}
eslint-plugin-import-x@4.6.1:
resolution: {integrity: sha512-wluSUifMIb7UfwWXqx7Yx0lE/SGCcGXECLx/9bCmbY2nneLwvAZ4vkd1IXDjPKFvdcdUgr1BaRnaRpx3k2+Pfw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
peerDependencies:
eslint: ^8.57.0 || ^9.0.0
+ eslint-plugin-jsdoc@50.6.1:
+ resolution: {integrity: sha512-UWyaYi6iURdSfdVVqvfOs2vdCVz0J40O/z/HTsv2sFjdjmdlUI/qlKLOTmwbPQ2tAfQnE5F9vqx+B+poF71DBQ==}
eslint-plugin-jsdoc@50.6.1:
resolution: {integrity: sha512-UWyaYi6iURdSfdVVqvfOs2vdCVz0J40O/z/HTsv2sFjdjmdlUI/qlKLOTmwbPQ2tAfQnE5F9vqx+B+poF71DBQ==}
engines: {node: '>=18'}
@@ -4509,6 +5003,8 @@ packages:
peerDependencies:
eslint: '>=6.0.0'
+ eslint-plugin-n@17.15.1:
+ resolution: {integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==}
eslint-plugin-n@17.15.1:
resolution: {integrity: sha512-KFw7x02hZZkBdbZEFQduRGH4VkIH4MW97ClsbAM4Y4E6KguBJWGfWG1P4HEIpZk2bkoWf0bojpnjNAhYQP8beA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -4521,7 +5017,9 @@ packages:
eslint-plugin-perfectionist@4.4.0:
resolution: {integrity: sha512-B78pWxCsA2sClourpWEmWziCcjEsAEyxsNV5G6cxxteu/NI0/2en9XZUONf5e/+O+dgoLZsEPHQEhnIxJcnUvA==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ eslint-plugin-perfectionist@4.4.0:
+ resolution: {integrity: sha512-B78pWxCsA2sClourpWEmWziCcjEsAEyxsNV5G6cxxteu/NI0/2en9XZUONf5e/+O+dgoLZsEPHQEhnIxJcnUvA==}
+ engines: {node: ^18.0.0 || >=20.0.0}
peerDependencies:
eslint: '>=8.0.0'
@@ -4531,6 +5029,8 @@ packages:
peerDependencies:
eslint: '>=8.44.0'
+ eslint-plugin-toml@0.12.0:
+ resolution: {integrity: sha512-+/wVObA9DVhwZB1nG83D2OAQRrcQZXy+drqUnFJKymqnmbnbfg/UPmEMCKrJNcEboUGxUjYrJlgy+/Y930mURQ==}
eslint-plugin-toml@0.12.0:
resolution: {integrity: sha512-+/wVObA9DVhwZB1nG83D2OAQRrcQZXy+drqUnFJKymqnmbnbfg/UPmEMCKrJNcEboUGxUjYrJlgy+/Y930mURQ==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -4590,6 +5090,8 @@ packages:
resolution: {integrity: sha512-UyLnSehNt62FFhSwjZlHmeokpRK59rcz29j+F1/aDgbkbRTk7wIc9XzdoasMUbRNKDM0qQt/+BJ4BrpFeABemw==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
+ eslint@9.17.0:
+ resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==}
eslint@9.17.0:
resolution: {integrity: sha512-evtlNcpJg+cZLcnVKwsai8fExnqjGPicK7gnUtlNuzu+Fv9bI0aLpND5T44VLQtoMEnI57LoXO9XAkIXwohKrA==}
engines: {node: ^18.18.0 || ^20.9.0 || >=21.1.0}
@@ -4704,6 +5206,8 @@ packages:
fast-uri@3.0.3:
resolution: {integrity: sha512-aLrHthzCjH5He4Z2H9YZ+v6Ujb9ocRuW6ZzkJQOrTxleEijANq4v1TsaPaVG1PZcuurEzrLcWRyYBYXD5cEiaw==}
+ fastq@1.18.0:
+ resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==}
fastq@1.18.0:
resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==}
@@ -4784,6 +5288,9 @@ packages:
forwarded-parse@2.1.2:
resolution: {integrity: sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw==}
+ forwarded-parse@2.1.2:
+ resolution: {integrity: sha512-alTFZZQDKMporBH77856pXgzhEzaUVmLCDk+egLgIgHst3Tpndzz8MnKe+GzRJRfvVdn69HhpW7cmXzvtLvJAw==}
+
fraction.js@4.3.7:
resolution: {integrity: sha512-ZsDfxO51wGAXREY55a7la9LScWpwv9RxIrYABrlvOFBlH/ShPnrtsXeuUIfXKKOVicNxQ+o8JTbJvjS4M89yew==}
@@ -4825,6 +5332,8 @@ packages:
function-bind@1.1.2:
resolution: {integrity: sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==}
+ function.prototype.name@1.1.8:
+ resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
function.prototype.name@1.1.8:
resolution: {integrity: sha512-e5iwyodOHhbMr/yNrc7fDYG4qlbIvI5gajyzPnb5TCwyhjApznQh1BMFou9b30SevY43gCJKXycoCBjMbsuW0Q==}
engines: {node: '>= 0.4'}
@@ -4847,6 +5356,8 @@ packages:
resolution: {integrity: sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==}
engines: {node: 6.* || 8.* || >= 10.*}
+ get-intrinsic@1.2.6:
+ resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==}
get-intrinsic@1.2.6:
resolution: {integrity: sha512-qxsEs+9A+u85HhllWJJFicJfPDhRmjzoYdl64aMWW9yRIJmSyxdn8IEkuIM530/7T+lv0TIHd8L6Q/ra0tEoeA==}
engines: {node: '>= 0.4'}
@@ -4865,6 +5376,8 @@ packages:
resolution: {integrity: sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==}
engines: {node: '>=16'}
+ get-symbol-description@1.1.0:
+ resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
get-symbol-description@1.1.0:
resolution: {integrity: sha512-w9UMqWwJxHNOvoNzSJ2oPF5wvYcvP7jUvYzhp67yEhTi17ZDBBC1z9pTdGuzjD+EFIqLSYRweZjqfiPzQ06Ebg==}
engines: {node: '>= 0.4'}
@@ -4880,9 +5393,13 @@ packages:
resolution: {integrity: sha512-qc8h1KIQbJpp+241id3GuAtkdyJ+IK+LIVtkiFTRKRrmddDzs3SI9CvP1QYmWBFvm1I/PWRwj//of8bgAc0ltA==}
engines: {node: '>=4'}
+ git-up@8.0.0:
+ resolution: {integrity: sha512-uBI8Zdt1OZlrYfGcSVroLJKgyNNXlgusYFzHk614lTasz35yg2PVpL1RMy0LOO2dcvF9msYW3pRfUSmafZNrjg==}
git-up@8.0.0:
resolution: {integrity: sha512-uBI8Zdt1OZlrYfGcSVroLJKgyNNXlgusYFzHk614lTasz35yg2PVpL1RMy0LOO2dcvF9msYW3pRfUSmafZNrjg==}
+ git-url-parse@16.0.0:
+ resolution: {integrity: sha512-Y8iAF0AmCaqXc6a5GYgPQW9ESbncNLOL+CeQAJRhmWUOmnPkKpBYeWYp4mFd3LA5j53CdGDdslzX12yEBVHQQg==}
git-url-parse@16.0.0:
resolution: {integrity: sha512-Y8iAF0AmCaqXc6a5GYgPQW9ESbncNLOL+CeQAJRhmWUOmnPkKpBYeWYp4mFd3LA5j53CdGDdslzX12yEBVHQQg==}
@@ -4938,6 +5455,8 @@ packages:
resolution: {integrity: sha512-oahGvuMGQlPw/ivIYBjVSrWAfWLBeku5tpPE2fOPLi+WHffIWbuh2tCjhyQhTBPMf5E9jDEH4FOmTYgYwbKwtQ==}
engines: {node: '>=18'}
+ globals@15.14.0:
+ resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
globals@15.14.0:
resolution: {integrity: sha512-OkToC372DtlQeje9/zHIo5CT8lRP/FUgEOKBEhU4e0abL7J7CD24fD9ohiLN5hagG/kWCYj4K5oaxxtj2Z0Dig==}
engines: {node: '>=18'}
@@ -4975,6 +5494,8 @@ packages:
resolution: {integrity: sha512-O1Ld7Dr+nqPnmGpdhzLmMTQ4vAsD+rHwMm1NLUmoUFFymBOMKxCCrtDxqdBRYXdeEPEi3SyoR4TizJLQrnKBNA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ h3-clerk@0.5.22:
+ resolution: {integrity: sha512-p9n+A3D3q2cYMdpnKrGYIQmRI2IczurGpboMmNFOo4CTri0JNPsa7wFa/KZoGkbVv/XCYb2kOK0gnWOixn3urQ==}
h3-clerk@0.5.22:
resolution: {integrity: sha512-p9n+A3D3q2cYMdpnKrGYIQmRI2IczurGpboMmNFOo4CTri0JNPsa7wFa/KZoGkbVv/XCYb2kOK0gnWOixn3urQ==}
peerDependencies:
@@ -4983,6 +5504,9 @@ packages:
h3@1.13.0:
resolution: {integrity: sha512-vFEAu/yf8UMUcB4s43OaDaigcqpQd14yanmOsn+NcRX3/guSKncyE2rOYhq8RIchgJrPSs/QiIddnTTR1ddiAg==}
+ has-bigints@1.1.0:
+ resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
+ engines: {node: '>= 0.4'}
has-bigints@1.1.0:
resolution: {integrity: sha512-R3pbpkcIqv2Pm3dUwgjclDRVmWpTJW2DcMzcIhEXEx1oh/CEMObMm3KLmRJOdvhM7o4uQBnwr8pzRK2sJWIqfg==}
engines: {node: '>= 0.4'}
@@ -4994,6 +5518,8 @@ packages:
has-property-descriptors@1.0.2:
resolution: {integrity: sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==}
+ has-proto@1.2.0:
+ resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
has-proto@1.2.0:
resolution: {integrity: sha512-KIL7eQPfHQRC8+XluaIw7BHUwwqL19bQn4hzNgdr+1wXoU0KKj6rufu47lhY7KbJR2C6T6+PfyN0Ea7wkSS+qQ==}
engines: {node: '>= 0.4'}
@@ -5025,6 +5551,8 @@ packages:
hast-util-raw@9.1.0:
resolution: {integrity: sha512-Y8/SBAHkZGoNkpzqqfCldijcuUKh7/su31kEBp67cFY09Wy0mTRgtsLYsiIxMJxlu0f6AA5SUTbDR8K0rxnbUw==}
+ hast-util-to-html@9.0.4:
+ resolution: {integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==}
hast-util-to-html@9.0.4:
resolution: {integrity: sha512-wxQzXtdbhiwGAUKrnQJXlOPmHnEehzphwkK7aluUPQ+lEc1xefC8pblMgpp2w5ldBTEfveRIrADcrhGIWrlTDA==}
@@ -5072,6 +5600,8 @@ packages:
resolution: {integrity: sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==}
engines: {node: '>= 6'}
+ https-proxy-agent@7.0.6:
+ resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
https-proxy-agent@7.0.6:
resolution: {integrity: sha512-vK9P5/iUfdl95AI+JVyUuIcVtd4ofvtrOr3HNtM2yxC9bnMbEdp3x01OhQNnjb8IJYi38VlTE3mBXwcfvywuSw==}
engines: {node: '>= 14'}
@@ -5108,6 +5638,8 @@ packages:
resolution: {integrity: sha512-hsBTNUqQTDwkWtcdYI2i06Y/nUBEsNEDJKjWdigLvegy8kDuJAS8uRlpkkcQpyEXL0Z/pjDy5HBmMjRCJ2gq+g==}
engines: {node: '>= 4'}
+ ignore@7.0.0:
+ resolution: {integrity: sha512-lcX8PNQygAa22u/0BysEY8VhaFRzlOkvdlKczDPnJvrkJD1EuqzEky5VYYKM2iySIuaVIDv9N190DfSreSLw2A==}
ignore@7.0.0:
resolution: {integrity: sha512-lcX8PNQygAa22u/0BysEY8VhaFRzlOkvdlKczDPnJvrkJD1EuqzEky5VYYKM2iySIuaVIDv9N190DfSreSLw2A==}
engines: {node: '>= 4'}
@@ -5122,6 +5654,8 @@ packages:
resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
engines: {node: '>=6'}
+ import-in-the-middle@1.12.0:
+ resolution: {integrity: sha512-yAgSE7GmtRcu4ZUSFX/4v69UGXwugFFSdIQJ14LHPOPPQrWv8Y7O9PHsw8Ovk7bKCLe4sjXMbZFqGFcLHpZ89w==}
import-in-the-middle@1.12.0:
resolution: {integrity: sha512-yAgSE7GmtRcu4ZUSFX/4v69UGXwugFFSdIQJ14LHPOPPQrWv8Y7O9PHsw8Ovk7bKCLe4sjXMbZFqGFcLHpZ89w==}
@@ -5131,6 +5665,9 @@ packages:
importx@0.5.1:
resolution: {integrity: sha512-YrRaigAec1sC2CdIJjf/hCH1Wp9Ii8Cq5ROw4k5nJ19FVl2FcJUHZ5gGIb1vs8+JNYIyOJpc2fcufS2330bxDw==}
+ importx@0.5.1:
+ resolution: {integrity: sha512-YrRaigAec1sC2CdIJjf/hCH1Wp9Ii8Cq5ROw4k5nJ19FVl2FcJUHZ5gGIb1vs8+JNYIyOJpc2fcufS2330bxDw==}
+
impound@0.2.0:
resolution: {integrity: sha512-gXgeSyp9Hf7qG2/PLKmywHXyQf2xFrw+mJGpoj9DsAB9L7/MIKn+DeEx98UryWXdmbv8wUUPdcQof6qXnZoCGg==}
@@ -5160,6 +5697,8 @@ packages:
resolution: {integrity: sha512-QQnnxNyfvmHFIsj7gkPcYymR8Jdw/o7mp5ZFihxn6h8Ci6fh3Dx4E1gPjpQEpIuPo9XVNY/ZUwh4BPMjGyL01g==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
+ internal-slot@1.1.0:
+ resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
internal-slot@1.1.0:
resolution: {integrity: sha512-4gd7VpWNQNB4UKKCFFVcp1AVv+FMOgs9NKzjHKusc8jTMhd5eL1NqQqOpE0KzMds804/yHlglp3uxgluOqAPLw==}
engines: {node: '>= 0.4'}
@@ -5171,6 +5710,8 @@ packages:
resolution: {integrity: sha512-5Hh7Y1wQbvY5ooGgPbDaL5iYLAPzMTUrjMulskHLH6wnv/A+1q5rgEaiuqEjB+oxGXIVZs1FF+R/KPN3ZSQYYg==}
engines: {node: '>=12'}
+ ioredis@5.4.2:
+ resolution: {integrity: sha512-0SZXGNGZ+WzISQ67QDyZ2x0+wVxjjUndtD8oSeik/4ajifeiRufed8fCb8QW8VMyi4MXcS+UO1k/0NGhvq1PAg==}
ioredis@5.4.2:
resolution: {integrity: sha512-0SZXGNGZ+WzISQ67QDyZ2x0+wVxjjUndtD8oSeik/4ajifeiRufed8fCb8QW8VMyi4MXcS+UO1k/0NGhvq1PAg==}
engines: {node: '>=12.22.0'}
@@ -5192,6 +5733,8 @@ packages:
is-alphanumerical@2.0.1:
resolution: {integrity: sha512-hmbYhX/9MUMF5uh7tOXyK/n0ZvWpad5caBA17GsC6vyuCqaWliRG5K1qS9inmUhEMaOBIW7/whAnSwveW/LtZw==}
+ is-array-buffer@3.0.5:
+ resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
is-array-buffer@3.0.5:
resolution: {integrity: sha512-DDfANUiiG2wC1qawP66qlTugJeL5HyzMpfr8lLK+jMQirGzNod0B12cFB/9q838Ru27sBwfw78/rdoU7RERz6A==}
engines: {node: '>= 0.4'}
@@ -5214,6 +5757,8 @@ packages:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
+ is-boolean-object@1.2.1:
+ resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==}
is-boolean-object@1.2.1:
resolution: {integrity: sha512-l9qO6eFlUETHtuihLcYOaLKByJ1f+N4kthcU9YjHy3N+B3hWv0y/2Nd0mu/7lTFnRQHTrSdXF50HQ3bl5fEnng==}
engines: {node: '>= 0.4'}
@@ -5226,14 +5771,20 @@ packages:
resolution: {integrity: sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==}
engines: {node: '>= 0.4'}
+ is-core-module@2.16.1:
+ resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
is-core-module@2.16.1:
resolution: {integrity: sha512-UfoeMA6fIJ8wTYFEUjelnaGI67v6+N7qXJEvQuIGa99l4xsCruSYOVSQ0uPANn4dAzm8lkYPaKLrrijLq7x23w==}
engines: {node: '>= 0.4'}
+ is-data-view@1.0.2:
+ resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
is-data-view@1.0.2:
resolution: {integrity: sha512-RKtWF8pGmS87i2D6gqQu/l7EYRlVdfzemCJN/P3UOs//x1QE7mfhvzHIApBTRf7axvT6DMGwSwBXYCT0nfB9xw==}
engines: {node: '>= 0.4'}
+ is-date-object@1.1.0:
+ resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
is-date-object@1.1.0:
resolution: {integrity: sha512-PwwhEakHVKTdRNVOw+/Gyh0+MzlCl4R6qKvkhuvLtPMggI1WAHt9sOwZxQLSGpUaDnrdyDsomoRgNnCfKNSXXg==}
engines: {node: '>= 0.4'}
@@ -5255,6 +5806,8 @@ packages:
resolution: {integrity: sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==}
engines: {node: '>=0.10.0'}
+ is-finalizationregistry@1.1.1:
+ resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
is-finalizationregistry@1.1.1:
resolution: {integrity: sha512-1pC6N8qWJbWoPtEjgcL2xyhQOP491EQjeUo3qTKcmV8YSDDJrOepfG8pcC7h/QgnQHYSv0mJ3Z/ZWxmatVrysg==}
engines: {node: '>= 0.4'}
@@ -5290,6 +5843,8 @@ packages:
is-module@1.0.0:
resolution: {integrity: sha512-51ypPSPCoTEIN9dy5Oy+h4pShgJmPCygKfyRCISBI+JoWT/2oJvK8QPxmwv7b/p239jXrm9M1mlQbyKJ5A152g==}
+ is-number-object@1.1.1:
+ resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
is-number-object@1.1.1:
resolution: {integrity: sha512-lZhclumE1G6VYD8VHe35wFaIif+CTy5SJIi5+3y4psDgWu4wPDoBhF8NxUOinEc7pHgiTsT6MaBb92rKhhD+Xw==}
engines: {node: '>= 0.4'}
@@ -5317,6 +5872,8 @@ packages:
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
+ is-regex@1.2.1:
+ resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
is-regex@1.2.1:
resolution: {integrity: sha512-MjYsKHO5O7mCsmRGxWcLWheFqN9DJ/2TmngvjKXihe6efViPqc274+Fx/4fYj/r03+ESvBdTXK0V6tA3rgez1g==}
engines: {node: '>= 0.4'}
@@ -5329,6 +5886,8 @@ packages:
resolution: {integrity: sha512-iPAjerrse27/ygGLxw+EBR9agv9Y6uLeYVJMu+QNCoouJ1/1ri0mGrcWpfCqFZuzzx3WjtwxG098X+n4OuRkPg==}
engines: {node: '>= 0.4'}
+ is-shared-array-buffer@1.0.4:
+ resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
is-shared-array-buffer@1.0.4:
resolution: {integrity: sha512-ISWac8drv4ZGfwKl5slpHG9OwPNty4jOWPRIhBpxOoD+hqITiwuipOQ2bNthAzwA3B4fIjO4Nln74N0S9byq8A==}
engines: {node: '>= 0.4'}
@@ -5344,6 +5903,8 @@ packages:
resolution: {integrity: sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
+ is-string@1.1.1:
+ resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
is-string@1.1.1:
resolution: {integrity: sha512-BtEeSsoaQjlSPBemMQIrY1MY0uM6vnS1g5fmufYOtnxLGUZM2178PKbhsk7Ffv58IX+ZtcvoGwccYsh0PglkAA==}
engines: {node: '>= 0.4'}
@@ -5352,10 +5913,14 @@ packages:
resolution: {integrity: sha512-2AT6j+gXe/1ueqbW6fLZJiIw3F8iXGJtt0yDrZaBhAZEG1raiTxKWU+IPqMCzQAXOUCKdA4UDMgacKH25XG2Cw==}
engines: {node: '>=4'}
+ is-symbol@1.1.1:
+ resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
is-symbol@1.1.1:
resolution: {integrity: sha512-9gGx6GTtCQM73BgmHQXfDmLtfjjTUDSyoxTCbp5WtoixAhfgsDirWIcVQ/IHpvI5Vgd5i/J5F7B9cN/WlVbC/w==}
engines: {node: '>= 0.4'}
+ is-typed-array@1.1.15:
+ resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
is-typed-array@1.1.15:
resolution: {integrity: sha512-p3EcsicXjit7SaskXHs1hA91QxgTw46Fv6EFKKGS5DRFLD8yKnohjF3hxoju94b/OcMZoQukzpPpBE9uLVKzgQ==}
engines: {node: '>= 0.4'}
@@ -5364,10 +5929,15 @@ packages:
resolution: {integrity: sha512-K5pXYOm9wqY1RgjpL3YTkF39tni1XajUIkawTLUo9EZEVUFga5gSQJF8nNS7ZwJQ02y+1YCNYcMh+HIf1ZqE+w==}
engines: {node: '>= 0.4'}
+ is-weakref@1.1.0:
+ resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==}
+ engines: {node: '>= 0.4'}
is-weakref@1.1.0:
resolution: {integrity: sha512-SXM8Nwyys6nT5WP6pltOwKytLV7FqQ4UiibxVmW+EIosHcmCqkkjViTb5SNssDlkCiEYRP1/pdWUKVvZBmsR2Q==}
engines: {node: '>= 0.4'}
+ is-weakset@2.0.4:
+ resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
is-weakset@2.0.4:
resolution: {integrity: sha512-mfcwb6IzQyOKTs84CQMrOwW4gQcaTOAWJ0zzJCl2WSPDrWk/OzDaImWFH3djXhb24g4eudZfLRozAvPGw4d9hQ==}
engines: {node: '>= 0.4'}
@@ -5413,6 +5983,8 @@ packages:
resolution: {integrity: sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==}
engines: {node: '>= 10.13.0'}
+ jiti@1.21.7:
+ resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
jiti@1.21.7:
resolution: {integrity: sha512-/imKNG4EbWNrVjoNC/1H5/9GFy+tqjGBHCaSsN+P2RnPqjsLmv6UD3Ej+Kj8nBWaRAwyk7kK5ZUc+OEatnTR3A==}
hasBin: true
@@ -5421,6 +5993,8 @@ packages:
resolution: {integrity: sha512-pmfRbVRs/7khFrSAYnSiJ8C0D5GvzkE4Ey2pAvUcJsw1ly/p+7ut27jbJrjY79BpAJQJ4gXYFtK6d1Aub+9baQ==}
hasBin: true
+ jiti@2.4.2:
+ resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
jiti@2.4.2:
resolution: {integrity: sha512-rg9zJN+G4n2nfJl5MW3BMygZX56zKPNVEYYqq7adpmMh4Jn2QNEwhvQlFy6jPVdcod7txZtKHWnyZiA3a0zP7A==}
hasBin: true
@@ -5465,6 +6039,11 @@ packages:
engines: {node: '>=6'}
hasBin: true
+ jsesc@3.1.0:
+ resolution: {integrity: sha512-/sM3dO2FOzXjKQhJuo0Q173wf2KOo8t4I8vHy6lF9poUp7bKT0/NHE8fPX23PwfhnykfqnC2xRxOnVw5XuGIaA==}
+ engines: {node: '>=6'}
+ hasBin: true
+
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
@@ -5520,6 +6099,8 @@ packages:
resolution: {integrity: sha512-dhG34DXATL5hSxJbIexCft8FChFXtmskoZYnoPWjXQuebWYCNkVeV3KkGegCK9CP1oswI/vQibS2GY7Em/sJJA==}
engines: {node: '>= 8'}
+ knitwork@1.2.0:
+ resolution: {integrity: sha512-xYSH7AvuQ6nXkq42x0v5S8/Iry+cfulBz/DJQzhIyESdLD7425jXsPy4vn5cCXU+HhRN2kVw51Vd1K6/By4BQg==}
knitwork@1.2.0:
resolution: {integrity: sha512-xYSH7AvuQ6nXkq42x0v5S8/Iry+cfulBz/DJQzhIyESdLD7425jXsPy4vn5cCXU+HhRN2kVw51Vd1K6/By4BQg==}
@@ -5614,10 +6195,6 @@ packages:
longest-streak@3.1.0:
resolution: {integrity: sha512-9Ri+o0JYgehTaVBBDoMqIl8GXtbWg711O3srftcHhZ0dqnETqLaoIK0x17fUw9rFSlK/0NlsKe0Ahhyl5pXE2g==}
- loose-envify@1.4.0:
- resolution: {integrity: sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==}
- hasBin: true
-
lower-case@2.0.2:
resolution: {integrity: sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==}
@@ -5642,6 +6219,8 @@ packages:
magic-string@0.25.9:
resolution: {integrity: sha512-RmF0AsMzgt25qzqqLc1+MbHmhdx0ojF2Fvs4XnOqz2ZOBXzzkEwc/dJQZCYHAn7v1jbVOjAZfK8msRn4BxO4VQ==}
+ magic-string@0.30.17:
+ resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
magic-string@0.30.17:
resolution: {integrity: sha512-sNPKHvyjVf7gyjwS4xGTaW/mCnF8wnjtifKBEhxfZ7E/S8tQ0rssrwGNn6q8JH/ohItJfSQp9mBtQYuTlH5QnA==}
@@ -5666,6 +6245,10 @@ packages:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
engines: {node: '>= 0.4'}
+ math-intrinsics@1.1.0:
+ resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
+ engines: {node: '>= 0.4'}
+
mdast-util-find-and-replace@3.0.1:
resolution: {integrity: sha512-SG21kZHGC3XRTSUhtofZkBzZTJNM5ecCi0SK2IMKmSXR8vO3peL+kb1O0z7Zl83jKtutG4k5Wv/W7V3/YHvzPA==}
@@ -5708,6 +6291,8 @@ packages:
mdn-data@2.0.30:
resolution: {integrity: sha512-GaqWWShW4kv/G9IEucWScBx9G1/vsFZZJUO+tD26M8J8z3Kw5RDQjaoZe03YAClgeS/SWPOcb4nkFBTEi5DUEA==}
+ mdn-data@2.12.2:
+ resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
mdn-data@2.12.2:
resolution: {integrity: sha512-IEn+pegP1aManZuckezWCO+XZQDplx1366JoVhTpMpBB1sPey/SbveZQUosKiKiGYjg1wH4pMlNgXbCiYgihQA==}
@@ -5830,6 +6415,8 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
+ mime@4.0.6:
+ resolution: {integrity: sha512-4rGt7rvQHBbaSOF9POGkk1ocRP16Md1x36Xma8sz8h8/vfCUI2OtEIeCqe4Ofes853x4xDoPiFLIT47J5fI/7A==}
mime@4.0.6:
resolution: {integrity: sha512-4rGt7rvQHBbaSOF9POGkk1ocRP16Md1x36Xma8sz8h8/vfCUI2OtEIeCqe4Ofes853x4xDoPiFLIT47J5fI/7A==}
engines: {node: '>=16'}
@@ -5896,6 +6483,10 @@ packages:
resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==}
engines: {node: '>= 18'}
+ minizlib@3.0.1:
+ resolution: {integrity: sha512-umcy022ILvb5/3Djuu8LWeqUa8D68JaBzlttKeMWen48SjabqS3iY5w/vzeMzMUNhLDifyhbOwKDSznB1vvrwg==}
+ engines: {node: '>= 18'}
+
mitt@3.0.1:
resolution: {integrity: sha512-vKivATfr97l2/QBCYAkXYDbrIWPM2IIKEl7YPhjCvKlG3kE2gm+uBo6nEXK3M5/Ffh/FLpKExzOQ3JJoJGFKBw==}
@@ -5912,6 +6503,11 @@ packages:
engines: {node: '>=10'}
hasBin: true
+ mkdirp@3.0.1:
+ resolution: {integrity: sha512-+NsyUUAZDmo6YVHzL/stxSu3t9YS1iljliy3BSDrXJ/dkn1KYdmtZODGGjLcc9XLgVVpH4KshHB8XmZgMhaBXg==}
+ engines: {node: '>=10'}
+ hasBin: true
+
mlly@1.7.3:
resolution: {integrity: sha512-xUsx5n/mN0uQf4V548PKQ+YShA4/IW0KI1dZhrNrPCLG+xizETbHTkOa1f8/xut9JRPp8kQuMnz0oqwkTiLo/A==}
@@ -5964,6 +6560,8 @@ packages:
neo-async@2.6.2:
resolution: {integrity: sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==}
+ netlify@13.2.0:
+ resolution: {integrity: sha512-kOBfGlg3EMCjMLIBYjg0geMZaqzL75gg3bAuarjtj+/66zxbhh5qF6ZNQs+Tcq2MT3oJXG3ENKVNdnuvD1i5ag==}
netlify@13.2.0:
resolution: {integrity: sha512-kOBfGlg3EMCjMLIBYjg0geMZaqzL75gg3bAuarjtj+/66zxbhh5qF6ZNQs+Tcq2MT3oJXG3ENKVNdnuvD1i5ag==}
engines: {node: ^14.16.0 || >=16.0.0}
@@ -6023,9 +6621,14 @@ packages:
resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
hasBin: true
+ node-releases@2.0.19:
+ resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
node-releases@2.0.19:
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
+ nopt@8.0.0:
+ resolution: {integrity: sha512-1L/fTJ4UmV/lUxT2Uf006pfZKTvAgCF+chz+0OgBHO8u2Z67pE7AaAUUj7CJy0lXqHmymUvGFt6NE9R3HER0yw==}
+ engines: {node: ^18.17.0 || >=20.5.0}
nopt@8.0.0:
resolution: {integrity: sha512-1L/fTJ4UmV/lUxT2Uf006pfZKTvAgCF+chz+0OgBHO8u2Z67pE7AaAUUj7CJy0lXqHmymUvGFt6NE9R3HER0yw==}
engines: {node: ^18.17.0 || >=20.5.0}
@@ -6053,6 +6656,8 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+ nuxi@3.17.2:
+ resolution: {integrity: sha512-JDVtBBwEe9VjVkhxwR/crtGJnyLHzvl2F1pjtglekjTVeiMThfhQHcvsI/u007gBAfPpmaCIdRGnoeTF4VKS8w==}
nuxi@3.17.2:
resolution: {integrity: sha512-JDVtBBwEe9VjVkhxwR/crtGJnyLHzvl2F1pjtglekjTVeiMThfhQHcvsI/u007gBAfPpmaCIdRGnoeTF4VKS8w==}
engines: {node: ^16.10.0 || >=18.0.0}
@@ -6073,6 +6678,9 @@ packages:
vue-svg-loader:
optional: true
+ nuxt@3.15.0:
+ resolution: {integrity: sha512-pjP/2zEjr57ensZZ1F4b7KldocM9S4SOtukgi9zau1OFlyolUmEgMFbHnwmEKqzuZ1OPTaRS3/1S6B7GUVbbRg==}
+ engines: {node: ^18.20.5 || ^20.9.0 || >=22.0.0}
nuxt@3.15.0:
resolution: {integrity: sha512-pjP/2zEjr57ensZZ1F4b7KldocM9S4SOtukgi9zau1OFlyolUmEgMFbHnwmEKqzuZ1OPTaRS3/1S6B7GUVbbRg==}
engines: {node: ^18.20.5 || ^20.9.0 || >=22.0.0}
@@ -6080,6 +6688,7 @@ packages:
peerDependencies:
'@parcel/watcher': ^2.1.0
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
peerDependenciesMeta:
'@parcel/watcher':
optional: true
@@ -6104,6 +6713,8 @@ packages:
resolution: {integrity: sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==}
engines: {node: '>= 0.4'}
+ object.assign@4.1.7:
+ resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
object.assign@4.1.7:
resolution: {integrity: sha512-nK28WOo+QIjBkDduTINE4JkF/UJJKyf2EJxvJKfblDpyg0Q+pkOHNTL0Qwy6NP6FhE/EnzV73BxxqcJaXY9anw==}
engines: {node: '>= 0.4'}
@@ -6132,6 +6743,8 @@ packages:
resolution: {integrity: sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==}
engines: {node: '>=12'}
+ oniguruma-to-es@0.8.1:
+ resolution: {integrity: sha512-dekySTEvCxCj0IgKcA2uUCO/e4ArsqpucDPcX26w9ajx+DvMWLc5eZeJaRQkd7oC/+rwif5gnT900tA34uN9Zw==}
oniguruma-to-es@0.8.1:
resolution: {integrity: sha512-dekySTEvCxCj0IgKcA2uUCO/e4ArsqpucDPcX26w9ajx+DvMWLc5eZeJaRQkd7oC/+rwif5gnT900tA34uN9Zw==}
@@ -6203,6 +6816,8 @@ packages:
package-json-from-dist@1.0.1:
resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
+ package-manager-detector@0.2.8:
+ resolution: {integrity: sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==}
package-manager-detector@0.2.8:
resolution: {integrity: sha512-ts9KSdroZisdvKMWVAVCXiKqnqNfXz4+IbrBG8/BWx/TR5le+jfenvoBuIZ6UWM9nz47W7AbD9qYfAwfWMIwzA==}
@@ -6213,6 +6828,8 @@ packages:
resolution: {integrity: sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==}
engines: {node: '>=6'}
+ parse-entities@4.0.2:
+ resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==}
parse-entities@4.0.2:
resolution: {integrity: sha512-GG2AQYWoLgL877gQIKeRPGO1xF9+eG1ujIb5soS5gPvLQ1y2o8FL90w2QWNdf9I361Mpp7726c+lj3U0qK1uGw==}
@@ -6245,6 +6862,9 @@ packages:
parse-unit@1.0.1:
resolution: {integrity: sha512-hrqldJHokR3Qj88EIlV/kAyAi/G5R2+R56TBANxNMy0uPlYcttx0jnMW6Yx5KsKPSbC3KddM/7qQm3+0wEXKxg==}
+ parse-url@9.2.0:
+ resolution: {integrity: sha512-bCgsFI+GeGWPAvAiUv63ZorMeif3/U0zaXABGJbOWt5OH2KCaPHF6S+0ok4aqM9RuIPGyZdx9tR9l13PsW4AYQ==}
+ engines: {node: '>=14.13.0'}
parse-url@9.2.0:
resolution: {integrity: sha512-bCgsFI+GeGWPAvAiUv63ZorMeif3/U0zaXABGJbOWt5OH2KCaPHF6S+0ok4aqM9RuIPGyZdx9tR9l13PsW4AYQ==}
engines: {node: '>=14.13.0'}
@@ -6551,6 +7171,8 @@ packages:
resolution: {integrity: sha512-mQUvGU6aUFQ+rNvTIAcZuWGRT9a6f6Yrg9bHs4ImKF+HZCEK+plBvnAZYSIQztknZF2qnzNtr6F8s0+IuptdlQ==}
engines: {node: ^14.13.1 || >=16.0.0}
+ prisma@6.1.0:
+ resolution: {integrity: sha512-aFI3Yi+ApUxkwCJJwyQSwpyzUX7YX3ihzuHNHOyv4GJg3X5tQsmRaJEnZ+ZyfHpMtnyahhmXVfbTZ+lS8ZtfKw==}
prisma@6.1.0:
resolution: {integrity: sha512-aFI3Yi+ApUxkwCJJwyQSwpyzUX7YX3ihzuHNHOyv4GJg3X5tQsmRaJEnZ+ZyfHpMtnyahhmXVfbTZ+lS8ZtfKw==}
engines: {node: '>=18.18'}
@@ -6603,6 +7225,8 @@ packages:
quickselect@2.0.0:
resolution: {integrity: sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw==}
+ radix-vue@1.9.11:
+ resolution: {integrity: sha512-C+MtJ66jf8J28DO5bKgNwhGCi6WQYuEosD/tY/Orry9BTDcuF/Mps4HlFd2Tq4YlXF44BEPLQ2Paz89Mz70ZgA==}
radix-vue@1.9.11:
resolution: {integrity: sha512-C+MtJ66jf8J28DO5bKgNwhGCi6WQYuEosD/tY/Orry9BTDcuF/Mps4HlFd2Tq4YlXF44BEPLQ2Paz89Mz70ZgA==}
peerDependencies:
@@ -6625,8 +7249,8 @@ packages:
resolution: {integrity: sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==}
hasBin: true
- react@18.3.1:
- resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
+ react@19.0.0:
+ resolution: {integrity: sha512-V8AVnmPIICiWpGfm6GLzCR/W5FXLchHop40W4nXBmdlEceh16rCN8O8LNWm5bh5XUX91fh7KpA+W0TgMKmgTpQ==}
engines: {node: '>=0.10.0'}
read-pkg-up@7.0.1:
@@ -6648,6 +7272,8 @@ packages:
resolution: {integrity: sha512-9u/sniCrY3D5WdsERHzHE4G2YCXqoG5FTHUiCC4SIbr6XcLZBY05ya9EKjYek9O5xOAwjGq+1JdGBAS7Q9ScoA==}
engines: {node: '>= 6'}
+ readable-stream@4.6.0:
+ resolution: {integrity: sha512-cbAdYt0VcnpN2Bekq7PU+k363ZRsPwJoEEJOEtSJQlJXzwaxt3FIo/uL+KeDSGIjJqtkwyge4KQgD2S2kd+CQw==}
readable-stream@4.6.0:
resolution: {integrity: sha512-cbAdYt0VcnpN2Bekq7PU+k363ZRsPwJoEEJOEtSJQlJXzwaxt3FIo/uL+KeDSGIjJqtkwyge4KQgD2S2kd+CQw==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
@@ -6675,6 +7301,8 @@ packages:
resolution: {integrity: sha512-J8rn6v4DBb2nnFqkqwy6/NnTYMcgLA+sLr0iIO41qpv0n+ngb7ksag2tMRl0inb1bbO/esUwzW1vbJi7K0sI0g==}
engines: {node: ^12.0.0 || ^14.0.0 || >=16.0.0}
+ reflect.getprototypeof@1.0.9:
+ resolution: {integrity: sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==}
reflect.getprototypeof@1.0.9:
resolution: {integrity: sha512-r0Ay04Snci87djAsI4U+WNRcSw5S4pOH7qFjd/veA5gC7TbqESR3tcj28ia95L/fYUDw11JKP7uqUKUAfVvV5Q==}
engines: {node: '>= 0.4'}
@@ -6692,8 +7320,8 @@ packages:
regenerator-transform@0.15.2:
resolution: {integrity: sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==}
- regex-recursion@5.1.1:
- resolution: {integrity: sha512-ae7SBCbzVNrIjgSbh7wMznPcQel1DNlDtzensnFxpiNpXt1U2ju/bHugH422r+4LAVS1FpW1YCwilmnNsjum9w==}
+ regex-recursion@5.0.0:
+ resolution: {integrity: sha512-UwyOqeobrCCqTXPcsSqH4gDhOjD5cI/b8kjngWgSZbxYh5yVjAwTjO5+hAuPRNiuR70+5RlWSs+U9PVcVcW9Lw==}
regex-utilities@2.3.0:
resolution: {integrity: sha512-8VhliFJAWRaUiVvREIiW2NXXTmHs4vMNnSzuJVhscgmGav3g9VDxLrQndI3dZZVVdp0ZO/5v0xmX516/7M9cng==}
@@ -6750,6 +7378,8 @@ packages:
remark-gfm@4.0.0:
resolution: {integrity: sha512-U92vJgBPkbw4Zfu/IiW2oTZLSL3Zpv+uI7My2eq8JxKgqraFdU8YUGicEJCEgSbeaG+QDFqIcwwfMTOEelPxuA==}
+ remark-mdc@3.5.1:
+ resolution: {integrity: sha512-5eWB7CL2cFzJ0RYk/EsktRKo4cyE7gxxXcVXA4TVQYRd962cE9HW902zfdVZOBYKYlJqB2XEeC9dtAEzdg3RaA==}
remark-mdc@3.5.1:
resolution: {integrity: sha512-5eWB7CL2cFzJ0RYk/EsktRKo4cyE7gxxXcVXA4TVQYRd962cE9HW902zfdVZOBYKYlJqB2XEeC9dtAEzdg3RaA==}
@@ -6791,6 +7421,9 @@ packages:
resolve-protobuf-schema@2.1.0:
resolution: {integrity: sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ==}
+ resolve@1.22.10:
+ resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
+ engines: {node: '>= 0.4'}
resolve@1.22.10:
resolution: {integrity: sha512-NPRy+/ncIMeDlTAsuqwKIiferiawhefFJtkNSW0qZJEqMEb+qBt/77B/jGeeek+F0uOeN05CDa6HXbbIgtVX4w==}
engines: {node: '>= 0.4'}
@@ -6806,6 +7439,8 @@ packages:
rfdc@1.4.1:
resolution: {integrity: sha512-q1b3N5QkRUWUl7iyylaaj3kOpIT0N2i9MqIEQXP73GVsN9cw3fdx8X63cEmWhJGi2PPCF23Ijp7ktmd39rawIA==}
+ rimraf@5.0.10:
+ resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
rimraf@5.0.10:
resolution: {integrity: sha512-l0OE8wL34P4nJH/H2ffoaniAokM2qSmrtXHmlpvYr5AVVX8msAyW0l8NVJFDxlSK4u3Uh/f41cQheDVdnYijwQ==}
hasBin: true
@@ -6831,6 +7466,8 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
+ rollup@4.29.1:
+ resolution: {integrity: sha512-RaJ45M/kmJUzSWDs1Nnd5DdV4eerC98idtUOVr6FfKcgxqvjwHmxc5upLF9qZU9EpsVzzhleFahrT3shLuJzIw==}
rollup@4.29.1:
resolution: {integrity: sha512-RaJ45M/kmJUzSWDs1Nnd5DdV4eerC98idtUOVr6FfKcgxqvjwHmxc5upLF9qZU9EpsVzzhleFahrT3shLuJzIw==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
@@ -6846,6 +7483,8 @@ packages:
rw@1.3.3:
resolution: {integrity: sha512-PdhdWy89SiZogBLaw42zdeqtRJ//zFd2PgQavcICDUgJT5oW10QCRKbJ6bg4r0/UY2M6BWd5tkxuGFRvCkgfHQ==}
+ safe-array-concat@1.1.3:
+ resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
safe-array-concat@1.1.3:
resolution: {integrity: sha512-AURm5f0jYEOydBj7VQlVvDrjeFgthDdEF5H1dP+6mNpoXOMo1quQqJ4wvJDyRZ9+pO3kGWoOdmV08cSv2aJV6Q==}
engines: {node: '>=0.4'}
@@ -6856,10 +7495,6 @@ packages:
safe-buffer@5.2.1:
resolution: {integrity: sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==}
- safe-push-apply@1.0.0:
- resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
- engines: {node: '>= 0.4'}
-
safe-regex-test@1.1.0:
resolution: {integrity: sha512-x/+Cz4YrimQxQccJf5mKEbIa1NzeCRNI5Ecl/ekmlYaampdNLPalVyIcCZNNH3MvmqBugV5TMYZXv0ljslUlaw==}
engines: {node: '>= 0.4'}
@@ -6867,6 +7502,8 @@ packages:
safer-buffer@2.1.2:
resolution: {integrity: sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==}
+ sanitize-html@2.14.0:
+ resolution: {integrity: sha512-CafX+IUPxZshXqqRaG9ZClSlfPVjSxI0td7n07hk8QO2oO+9JDnlcL8iM8TWeOXOIBFgIOx6zioTzM53AOMn3g==}
sanitize-html@2.14.0:
resolution: {integrity: sha512-CafX+IUPxZshXqqRaG9ZClSlfPVjSxI0td7n07hk8QO2oO+9JDnlcL8iM8TWeOXOIBFgIOx6zioTzM53AOMn3g==}
@@ -6878,6 +7515,10 @@ packages:
resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
engines: {node: '>= 10.13.0'}
+ schema-utils@4.3.0:
+ resolution: {integrity: sha512-Gf9qqc58SpCA/xdziiHz35F4GNIWYWZrEshUc/G/r5BnLph6xpKuLeoJoQuj5WfBIx/eQLf+hmVPYHaxJu7V2g==}
+ engines: {node: '>= 10.13.0'}
+
scslre@0.3.0:
resolution: {integrity: sha512-3A6sD0WYP7+QrjbfNA2FN3FsOaGGFoekCVgTyypy53gPxhbkCIjtO6YWgdrfM+n/8sI8JeXZOIxsHjMTNxQ4nQ==}
engines: {node: ^14.0.0 || >=16.0.0}
@@ -6942,6 +7583,8 @@ packages:
resolution: {integrity: sha512-AzqKpGKjrj7EM6rKVQEPpB288oCfnrEIuyoT9cyF4nmGa7V8Zk6f7RRqYisX8X9m+Q7bd632aZW4ky7EhbQztA==}
engines: {node: '>= 0.4'}
+ shiki@1.24.4:
+ resolution: {integrity: sha512-aVGSFAOAr1v26Hh/+GBIsRVDWJ583XYV7CuNURKRWh9gpGv4OdbisZGq96B9arMYTZhTQkmRF5BrShOSTvNqhw==}
shiki@1.24.4:
resolution: {integrity: sha512-aVGSFAOAr1v26Hh/+GBIsRVDWJ583XYV7CuNURKRWh9gpGv4OdbisZGq96B9arMYTZhTQkmRF5BrShOSTvNqhw==}
@@ -6960,6 +7603,20 @@ packages:
resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
engines: {node: '>= 0.4'}
+ side-channel@1.1.0:
+ resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
+ side-channel-list@1.0.0:
+ resolution: {integrity: sha512-FCLHtRD/gnpCiCHEiJLOwdmFP+wzCmDEkc9y7NsYxeF4u7Btsn1ZuwgwJGxImImHicJArLP4R0yX4c2KCrMrTA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-map@1.0.1:
+ resolution: {integrity: sha512-VCjCNfgMsby3tTdo02nbjtM/ewra6jPHmpThenkTYh8pG9ucZ/1P8So4u4FGBek/BjpOVsDCMoLA/iuBKIFXRA==}
+ engines: {node: '>= 0.4'}
+
+ side-channel-weakmap@1.0.2:
+ resolution: {integrity: sha512-WPS/HvHQTYnHisLo9McqBHOJk2FkHO/tlpvldyrnem4aeQp4hai3gythswg6p01oSoTl58rcpiFAjF2br2Ak2A==}
+ engines: {node: '>= 0.4'}
+
side-channel@1.1.0:
resolution: {integrity: sha512-ZX99e6tRweoUXqR+VBrslhda51Nh5MTQwou5tnUDgbtyM0dBgmhEDtWGP/xbKn6hqfPRHujUNwz5fy/wbbhnpw==}
engines: {node: '>= 0.4'}
@@ -7099,6 +7756,8 @@ packages:
std-env@3.8.0:
resolution: {integrity: sha512-Bc3YwwCB+OzldMxOXJIIvC6cPRWr/LxOp48CdQTOkPyk/t4JWWJbrilwBd7RJzKV8QW7tJkcgAmeuLLJugl5/w==}
+ streamx@2.21.1:
+ resolution: {integrity: sha512-PhP9wUnFLa+91CPy3N6tiQsK+gnYyUNuk15S3YG/zjYE7RuPeCjJngqnzpC31ow0lzBHQ+QGO4cNJnd0djYUsw==}
streamx@2.21.1:
resolution: {integrity: sha512-PhP9wUnFLa+91CPy3N6tiQsK+gnYyUNuk15S3YG/zjYE7RuPeCjJngqnzpC31ow0lzBHQ+QGO4cNJnd0djYUsw==}
@@ -7110,14 +7769,21 @@ packages:
resolution: {integrity: sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==}
engines: {node: '>=12'}
+ string.prototype.matchall@4.0.12:
+ resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
string.prototype.matchall@4.0.12:
resolution: {integrity: sha512-6CC9uyBL+/48dYizRf7H7VAYCMCNTBeM78x/VTUe9bFEaxBepPJDa1Ow99LqI/1yF7kuy7Q3cQsYMrcjGUcskA==}
engines: {node: '>= 0.4'}
+ string.prototype.trim@1.2.10:
+ resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
string.prototype.trim@1.2.10:
resolution: {integrity: sha512-Rs66F0P/1kedk5lyYyH9uBzuiI/kNRmwJAR9quK6VOtIpZ2G+hMZd+HQbbv25MgCA6gEffoMZYxlTod4WcdrKA==}
engines: {node: '>= 0.4'}
+ string.prototype.trimend@1.0.9:
+ resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
+ engines: {node: '>= 0.4'}
string.prototype.trimend@1.0.9:
resolution: {integrity: sha512-G7Ok5C6E/j4SGfyLCloXTrngQIQU3PWtXGst3yM7Bea9FRURf1S42ZHlZZtsNque2FN2PoUhfZXYLNWwEr4dLQ==}
engines: {node: '>= 0.4'}
@@ -7189,6 +7855,8 @@ packages:
supercluster@7.1.5:
resolution: {integrity: sha512-EulshI3pGUM66o6ZdH3ReiFcvHpM3vAigyK+vcxdjpJyEbIIrtbmBdY23mGgnI24uXiGFvrGq9Gkum/8U7vJWg==}
+ superjson@2.2.2:
+ resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
superjson@2.2.2:
resolution: {integrity: sha512-5JRxVqC8I8NuOUjzBbvVJAKNM8qoVuH0O77h4WInc/qC2q5IreqKxYwgkga3PfA22OayK2ikceb/B26dztPl+Q==}
engines: {node: '>=16'}
@@ -7222,10 +7890,13 @@ packages:
engines: {node: '>=14.0.0'}
hasBin: true
+ swr@2.3.0:
+ resolution: {integrity: sha512-NyZ76wA4yElZWBHzSgEJc28a0u6QZvhb6w0azeL2k7+Q1gAzVK+IqQYXhVOC/mzi+HZIozrZvBVeSeOZNR2bqA==}
swr@2.3.0:
resolution: {integrity: sha512-NyZ76wA4yElZWBHzSgEJc28a0u6QZvhb6w0azeL2k7+Q1gAzVK+IqQYXhVOC/mzi+HZIozrZvBVeSeOZNR2bqA==}
peerDependencies:
react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^16.11.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
synckit@0.6.2:
resolution: {integrity: sha512-Vhf+bUa//YSTYKseDiiEuQmhGCoIF3CVBhunm3r/DQnYiGT4JssmnKQc44BIyOZRK2pKjXXAgbhfmbeoC9CJpA==}
@@ -7239,6 +7910,8 @@ packages:
resolution: {integrity: sha512-ulAk51I9UVUyJgxlv9M6lFot2WP3e7t8Kz9+IS6D4rVba1tR9kON+Ey69f+1R4Q8cd45Lod6a4IcJIxnzGc/zA==}
engines: {node: '>=18'}
+ tailwind-merge@2.6.0:
+ resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==}
tailwind-merge@2.6.0:
resolution: {integrity: sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==}
@@ -7267,6 +7940,10 @@ packages:
resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
engines: {node: '>=18'}
+ tar@7.4.3:
+ resolution: {integrity: sha512-5S7Va8hKfV7W5U6g3aYxXmlPoZVAwUMy9AOKyF2fVuZa2UD3qZjg578OrLRt8PcNN1PleVaL/5/yYATNL0ICUw==}
+ engines: {node: '>=18'}
+
temp-dir@2.0.0:
resolution: {integrity: sha512-aoBAniQmmwtcKp/7BzsH8Cxzv8OL736p7v1ihGb5e9DJ9kTwGWHrQrVB5+lfVDzfGrdRzXch+ig7LHaY1JTOrg==}
engines: {node: '>=8'}
@@ -7279,6 +7956,8 @@ packages:
resolution: {integrity: sha512-wK0Ri4fOGjv/XPy8SBHZChl8CM7uMc5VML7SqiQ0zG7+J5Vr+RMQDoHa2CNT6KHUnTGIXH34UDMkPzAUyapBZg==}
engines: {node: '>=8'}
+ terser-webpack-plugin@5.3.11:
+ resolution: {integrity: sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==}
terser-webpack-plugin@5.3.11:
resolution: {integrity: sha512-RVCsMfuD0+cTt3EwX8hSl2Ks56EbFHWmhluwcqoPKtBnfjiT6olaq7PRIRfhyU8nnC2MrnDrBLfrD/RGE+cVXQ==}
engines: {node: '>= 10.13.0'}
@@ -7295,11 +7974,15 @@ packages:
uglify-js:
optional: true
+ terser@5.37.0:
+ resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==}
terser@5.37.0:
resolution: {integrity: sha512-B8wRRkmre4ERucLM/uXx4MOV5cbnOlVAqUst+1+iLKPI0dOgFO28f84ptoQt9HEI537PMzfYa/d+GEPKTRXmYA==}
engines: {node: '>=10'}
hasBin: true
+ text-decoder@1.2.3:
+ resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
text-decoder@1.2.3:
resolution: {integrity: sha512-3/o9z3X0X0fTupwsYvR03pJ/DjWuqqrfwBgTQzdWDiQSm9KitAyz/9WqsT2JQW7KV2m+bC2ol/zqpW37NHxLaA==}
@@ -7417,6 +8100,8 @@ packages:
resolution: {integrity: sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==}
engines: {node: '>=12.20'}
+ type-fest@4.31.0:
+ resolution: {integrity: sha512-yCxltHW07Nkhv/1F6wWBr8kz+5BGMfP+RbRSYFnegVb0qV/UMT0G0ElBloPVerqn4M2ZV80Ir1FtCcYv1cT6vQ==}
type-fest@4.31.0:
resolution: {integrity: sha512-yCxltHW07Nkhv/1F6wWBr8kz+5BGMfP+RbRSYFnegVb0qV/UMT0G0ElBloPVerqn4M2ZV80Ir1FtCcYv1cT6vQ==}
engines: {node: '>=16'}
@@ -7424,14 +8109,20 @@ packages:
type-level-regexp@0.1.17:
resolution: {integrity: sha512-wTk4DH3cxwk196uGLK/E9pE45aLfeKJacKmcEgEOA/q5dnPGNxXt0cfYdFxb57L+sEpf1oJH4Dnx/pnRcku9jg==}
+ typed-array-buffer@1.0.3:
+ resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
typed-array-buffer@1.0.3:
resolution: {integrity: sha512-nAYYwfY3qnzX30IkA6AQZjVbtK6duGontcQm1WSG1MD94YLqK0515GNApXkoxKOWMusVssAHWLh9SeaoefYFGw==}
engines: {node: '>= 0.4'}
+ typed-array-byte-length@1.0.3:
+ resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
typed-array-byte-length@1.0.3:
resolution: {integrity: sha512-BaXgOuIxz8n8pIq3e7Atg/7s+DpiYrxn4vdot3w9KbnBhcRQq6o3xemQdIfynqSeXeDrF32x+WvfzmOjPiY9lg==}
engines: {node: '>= 0.4'}
+ typed-array-byte-offset@1.0.4:
+ resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
typed-array-byte-offset@1.0.4:
resolution: {integrity: sha512-bTlAFB/FBYMcuX81gbL4OcpH5PmlFHqlCCpAl8AlEzMz5k53oNDvN8p1PNOWLEmI2x4orp3raOFB51tv9X+MFQ==}
engines: {node: '>= 0.4'}
@@ -7451,6 +8142,9 @@ packages:
ultrahtml@1.5.3:
resolution: {integrity: sha512-GykOvZwgDWZlTQMtp5jrD4BVL+gNn2NVlVafjcFUJ7taY20tqYdwdoWBFy6GBJsNTZe1GkGPkSl5knQAjtgceg==}
+ unbox-primitive@1.1.0:
+ resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
+ engines: {node: '>= 0.4'}
unbox-primitive@1.1.0:
resolution: {integrity: sha512-nWJ91DjeOkej/TA8pXQ3myruKpKEYgqvpw9lz4OPHj/NWFNluYrjbz9j01CJ8yKQd2g4jFoOkINCTW2I5LEEyw==}
engines: {node: '>= 0.4'}
@@ -7461,9 +8155,14 @@ packages:
unconfig@0.6.0:
resolution: {integrity: sha512-4C67J0nIF2QwSXty2kW3zZx1pMZ3iXabylvJWWgHybWVUcMf9pxwsngoQt0gC+AVstRywFqrRBp3qOXJayhpOw==}
+ unconfig@0.6.0:
+ resolution: {integrity: sha512-4C67J0nIF2QwSXty2kW3zZx1pMZ3iXabylvJWWgHybWVUcMf9pxwsngoQt0gC+AVstRywFqrRBp3qOXJayhpOw==}
+
uncrypto@0.1.3:
resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
+ unctx@2.4.1:
+ resolution: {integrity: sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg==}
unctx@2.4.1:
resolution: {integrity: sha512-AbaYw0Nm4mK4qjhns67C+kgxR2YWiwlDBPzxrN8h8C6VtAdCgditAY5Dezu3IJy4XVqAnbrXt9oQJvsn3fyozg==}
@@ -7473,6 +8172,8 @@ packages:
unenv@1.10.0:
resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
+ unhead@1.11.14:
+ resolution: {integrity: sha512-XmXW0aZyX9kGk9ejCKCSvv/J4T3Rt4hoAe2EofM+nhG+zwZ7AArUMK/0F/fj6FTkfgY0u0/JryE00qUDULgygA==}
unhead@1.11.14:
resolution: {integrity: sha512-XmXW0aZyX9kGk9ejCKCSvv/J4T3Rt4hoAe2EofM+nhG+zwZ7AArUMK/0F/fj6FTkfgY0u0/JryE00qUDULgygA==}
@@ -7509,9 +8210,13 @@ packages:
unified@11.0.5:
resolution: {integrity: sha512-xKvGhPWw3k84Qjh8bI3ZeJjqnyadK+GEFtazSfZv/rKeTkTjOJho6mFqh2SM96iIcZokxiOpg78GazTSg8+KHA==}
+ unifont@0.1.7:
+ resolution: {integrity: sha512-UyN6r/TUyl69iW/jhXaCtuwA6bP9ZSLhVViwgP8LH9EHRGk5FyIMDxvClqD5z2BV6MI9GMATzd0dyLqFxKkUmQ==}
unifont@0.1.7:
resolution: {integrity: sha512-UyN6r/TUyl69iW/jhXaCtuwA6bP9ZSLhVViwgP8LH9EHRGk5FyIMDxvClqD5z2BV6MI9GMATzd0dyLqFxKkUmQ==}
+ unimport@3.14.5:
+ resolution: {integrity: sha512-tn890SwFFZxqaJSKQPPd+yygfKSATbM8BZWW1aCR2TJBTs1SDrmLamBueaFtYsGjHtQaRgqEbQflOjN2iW12gA==}
unimport@3.14.5:
resolution: {integrity: sha512-tn890SwFFZxqaJSKQPPd+yygfKSATbM8BZWW1aCR2TJBTs1SDrmLamBueaFtYsGjHtQaRgqEbQflOjN2iW12gA==}
@@ -7594,13 +8299,16 @@ packages:
resolution: {integrity: sha512-2qzQo5LN2DmUZXkWDHvGKLF5BP0WN+KthD6aPnPJ8plRBIjv4lh5O07eYcSxgO2znNw9s4MNhEO1sB+JDllDbQ==}
engines: {node: '>=18.12.0'}
- unplugin@2.1.2:
- resolution: {integrity: sha512-Q3LU0e4zxKfRko1wMV2HmP8lB9KWislY7hxXpxd+lGx0PRInE4vhMBVEZwpdVYHvtqzhSrzuIfErsob6bQfCzw==}
+ unplugin@2.1.0:
+ resolution: {integrity: sha512-us4j03/499KhbGP8BU7Hrzrgseo+KdfJYWcbcajCOqsAyb8Gk0Yn2kiUIcZISYCb1JFaZfIuG3b42HmguVOKCQ==}
engines: {node: '>=18.12.0'}
- unstorage@1.14.4:
- resolution: {integrity: sha512-1SYeamwuYeQJtJ/USE1x4l17LkmQBzg7deBJ+U9qOBoHo15d1cDxG4jM31zKRgF7pG0kirZy4wVMX6WL6Zoscg==}
+ unstorage@1.14.3:
+ resolution: {integrity: sha512-nj1rtc2XWCck2fDB39sboAajqooj9LmxZ9/eBM1XR+iUQAFctKvLl0FcPP5f4vzRgU1dmJ03SZhqZMLc9RDXIA==}
peerDependencies:
+ '@azure/app-configuration': ^1.8.0
+ '@azure/cosmos': ^4.2.0
+ '@azure/data-tables': ^13.3.0
'@azure/app-configuration': ^1.8.0
'@azure/cosmos': ^4.2.0
'@azure/data-tables': ^13.3.0
@@ -7609,16 +8317,24 @@ packages:
'@azure/storage-blob': ^12.26.0
'@capacitor/preferences': ^6.0.3
'@deno/kv': '>=0.8.4'
+ '@azure/storage-blob': ^12.26.0
+ '@capacitor/preferences': ^6.0.3
+ '@deno/kv': '>=0.8.4'
'@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0
'@planetscale/database': ^1.19.0
'@upstash/redis': ^1.34.3
'@vercel/blob': '>=0.27.0'
+ '@vercel/blob': '>=0.27.0'
'@vercel/kv': ^1.0.1
aws4fetch: ^1.0.20
db0: '>=0.2.1'
+ aws4fetch: ^1.0.20
+ db0: '>=0.2.1'
idb-keyval: ^6.2.1
ioredis: ^5.4.2
uploadthing: ^7.4.1
+ ioredis: ^5.4.2
+ uploadthing: ^7.4.1
peerDependenciesMeta:
'@azure/app-configuration':
optional: true
@@ -7636,6 +8352,8 @@ packages:
optional: true
'@deno/kv':
optional: true
+ '@deno/kv':
+ optional: true
'@netlify/blobs':
optional: true
'@planetscale/database':
@@ -7644,23 +8362,33 @@ packages:
optional: true
'@vercel/blob':
optional: true
+ '@vercel/blob':
+ optional: true
'@vercel/kv':
optional: true
aws4fetch:
optional: true
db0:
optional: true
+ aws4fetch:
+ optional: true
+ db0:
+ optional: true
idb-keyval:
optional: true
ioredis:
optional: true
uploadthing:
optional: true
+ uploadthing:
+ optional: true
untun@0.1.3:
resolution: {integrity: sha512-4luGP9LMYszMRZwsvyUd9MrxgEGZdZuZgpVQHEEX0lCYFESasVRvZd0EYpCkOIbJKHMuv0LskpXc/8Un+MJzEQ==}
hasBin: true
+ untyped@1.5.2:
+ resolution: {integrity: sha512-eL/8PlhLcMmlMDtNPKhyyz9kEBDS3Uk4yMu/ewlkT2WFbtzScjHWPJLdQLmaGPUKjXzwe9MumOtOgc4Fro96Kg==}
untyped@1.5.2:
resolution: {integrity: sha512-eL/8PlhLcMmlMDtNPKhyyz9kEBDS3Uk4yMu/ewlkT2WFbtzScjHWPJLdQLmaGPUKjXzwe9MumOtOgc4Fro96Kg==}
hasBin: true
@@ -7690,10 +8418,13 @@ packages:
urlpattern-polyfill@8.0.2:
resolution: {integrity: sha512-Qp95D4TPJl1kC9SKigDcqgyM2VDVO4RiJc2d4qe5GrYm+zbIQCWWKAFaJNQ4BhdFeDGwBmAxqJBwWSJDb9T3BQ==}
+ use-sync-external-store@1.4.0:
+ resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==}
use-sync-external-store@1.4.0:
resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==}
peerDependencies:
react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
+ react: ^16.8.0 || ^17.0.0 || ^18.0.0 || ^19.0.0
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
@@ -7717,6 +8448,8 @@ packages:
radix-vue: ^1.4.0
vue: ^3.3.0
+ vee-validate@4.15.0:
+ resolution: {integrity: sha512-PGJh1QCFwCBjbHu5aN6vB8macYVWrajbDvgo1Y/8fz9n/RVIkLmZCJDpUgu7+mUmCOPMxeyq7vXUOhbwAqdXcA==}
vee-validate@4.15.0:
resolution: {integrity: sha512-PGJh1QCFwCBjbHu5aN6vB8macYVWrajbDvgo1Y/8fz9n/RVIkLmZCJDpUgu7+mUmCOPMxeyq7vXUOhbwAqdXcA==}
peerDependencies:
@@ -7797,10 +8530,13 @@ packages:
'@vite-pwa/assets-generator':
optional: true
+ vite-plugin-vue-inspector@5.3.1:
+ resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
vite-plugin-vue-inspector@5.3.1:
resolution: {integrity: sha512-cBk172kZKTdvGpJuzCCLg8lJ909wopwsu3Ve9FsL1XsnLBiRT9U3MePcqrgGHgCX2ZgkqZmAGR8taxw+TV6s7A==}
peerDependencies:
vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
+ vite: ^3.0.0-0 || ^4.0.0-0 || ^5.0.0-0 || ^6.0.0-0
vite@5.4.11:
resolution: {integrity: sha512-c7jFQRklXua0mTzneGW9QVyxFjUgwcihC4bXEtujIo2ouWCe1Ajt/amn2PCxYnhYfd5k09JX3SB7OYWFKYqj8Q==}
@@ -7873,9 +8609,49 @@ packages:
yaml:
optional: true
- vscode-jsonrpc@6.0.0:
- resolution: {integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==}
- engines: {node: '>=8.0.0 || >=10.0.0'}
+ vite@6.0.6:
+ resolution: {integrity: sha512-NSjmUuckPmDU18bHz7QZ+bTYhRR0iA72cs2QAxCqDpafJ0S6qetco0LB3WW2OxlMHS0JmAv+yZ/R3uPmMyGTjQ==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
+ hasBin: true
+ peerDependencies:
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
+ less: '*'
+ lightningcss: ^1.21.0
+ sass: '*'
+ sass-embedded: '*'
+ stylus: '*'
+ sugarss: '*'
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
+ jiti:
+ optional: true
+ less:
+ optional: true
+ lightningcss:
+ optional: true
+ sass:
+ optional: true
+ sass-embedded:
+ optional: true
+ stylus:
+ optional: true
+ sugarss:
+ optional: true
+ terser:
+ optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
+
+ vscode-jsonrpc@6.0.0:
+ resolution: {integrity: sha512-wnJA4BnEjOSyFMvjZdpiOwhSq9uDoK8e/kpRJDTaMYzwlkrhG1fwDIZI94CLsLzlCK5cIbMMtFlJlfR57Lavmg==}
+ engines: {node: '>=8.0.0 || >=10.0.0'}
vscode-languageclient@7.0.0:
resolution: {integrity: sha512-P9AXdAPlsCgslpP9pRxYPqkNYV7Xq8300/aZDpO35j1fJm/ncize8iGswzYlcvFw5DQUx4eVk+KvfXdL0rehNg==}
@@ -7903,6 +8679,8 @@ packages:
vue-bundle-renderer@2.1.1:
resolution: {integrity: sha512-+qALLI5cQncuetYOXp4yScwYvqh8c6SMXee3B+M7oTZxOgtESP0l4j/fXdEJoZ+EdMxkGWIj+aSEyjXkOdmd7g==}
+ vue-clerk@0.9.11:
+ resolution: {integrity: sha512-PIfupYrFcPx1WDfl/BFqI+Oi0Waqd4ANB8TATzo730S9VJ+h9AiyXhsVkQgreuBgTgf4iVV0N/v2hRTD0pTCnQ==}
vue-clerk@0.9.11:
resolution: {integrity: sha512-PIfupYrFcPx1WDfl/BFqI+Oi0Waqd4ANB8TATzo730S9VJ+h9AiyXhsVkQgreuBgTgf4iVV0N/v2hRTD0pTCnQ==}
peerDependencies:
@@ -7947,6 +8725,8 @@ packages:
peerDependencies:
vue: ^3.2.0
+ vue-tsc@2.2.0:
+ resolution: {integrity: sha512-gtmM1sUuJ8aSb0KoAFmK9yMxb8TxjewmxqTJ1aKphD5Cbu0rULFY6+UQT51zW7SpUcenfPUuflKyVwyx9Qdnxg==}
vue-tsc@2.2.0:
resolution: {integrity: sha512-gtmM1sUuJ8aSb0KoAFmK9yMxb8TxjewmxqTJ1aKphD5Cbu0rULFY6+UQT51zW7SpUcenfPUuflKyVwyx9Qdnxg==}
hasBin: true
@@ -7988,8 +8768,8 @@ packages:
webpack-virtual-modules@0.6.2:
resolution: {integrity: sha512-66/V2i5hQanC51vBQKPH4aI8NMAcBW59FVBs+rC7eGHupMyfn34q7rZIE+ETlJ+XTevqfUhVVBgSUNSW2flEUQ==}
- webpack@5.96.1:
- resolution: {integrity: sha512-l2LlBSvVZGhL4ZrPwyr8+37AunkcYj5qh8o6u2/2rzoPc8gxFJkLj1WxNgooi9pnoc06jh0BjuXnamM4qlujZA==}
+ webpack@5.97.1:
+ resolution: {integrity: sha512-EksG6gFY3L1eFMROS/7Wzgrii5mBAFe4rIr3r2BTfo7bcc+DWwFZ4OJ/miOuHJO/A85HwyI4eQ0F6IKXesO7Fg==}
engines: {node: '>=10.13.0'}
hasBin: true
peerDependencies:
@@ -8004,10 +8784,14 @@ packages:
whatwg-url@7.1.0:
resolution: {integrity: sha512-WUu7Rg1DroM7oQvGWfOiAK21n74Gg+T4elXEQYkOhtyLeWiJFoOGLXPKI/9gzIie9CtwVLm8wtw6YJdKyxSjeg==}
+ which-boxed-primitive@1.1.1:
+ resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
which-boxed-primitive@1.1.1:
resolution: {integrity: sha512-TbX3mj8n0odCBFVlY8AxkqcHASw3L60jIuF8jFP78az3C2YhmGvqbHBpAjTRH2/xqYunrJ9g1jSyjCjpoWzIAA==}
engines: {node: '>= 0.4'}
+ which-builtin-type@1.2.1:
+ resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
which-builtin-type@1.2.1:
resolution: {integrity: sha512-6iBczoX+kDQ7a3+YJBnh3T+KZRxM/iYNPXicqk66/Qfm1b93iu+yOImkg0zHbj5LNOcNv1TEADiZ0xa34B4q6Q==}
engines: {node: '>= 0.4'}
@@ -8016,6 +8800,8 @@ packages:
resolution: {integrity: sha512-K4jVyjnBdgvc86Y6BkaLZEN933SwYOuBFkdmBu9ZfkcAbdVbpITnDmjvZ/aQjRXQrv5EPkTnD1s39GiiqbngCw==}
engines: {node: '>= 0.4'}
+ which-typed-array@1.1.18:
+ resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
which-typed-array@1.1.18:
resolution: {integrity: sha512-qEcY+KJYlWyLH9vNbsr6/5j59AXk5ni5aakf8ldzBvGde6Iz4sxZGkJyWSAueTG7QhOvNRYb1lDdFmL5Td0QKA==}
engines: {node: '>= 0.4'}
@@ -8038,54 +8824,54 @@ packages:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
- workbox-background-sync@7.1.0:
- resolution: {integrity: sha512-rMbgrzueVWDFcEq1610YyDW71z0oAXLfdRHRQcKw4SGihkfOK0JUEvqWHFwA6rJ+6TClnMIn7KQI5PNN1XQXwQ==}
+ workbox-background-sync@7.3.0:
+ resolution: {integrity: sha512-PCSk3eK7Mxeuyatb22pcSx9dlgWNv3+M8PqPaYDokks8Y5/FX4soaOqj3yhAZr5k6Q5JWTOMYgaJBpbw11G9Eg==}
- workbox-broadcast-update@7.1.0:
- resolution: {integrity: sha512-O36hIfhjej/c5ar95pO67k1GQw0/bw5tKP7CERNgK+JdxBANQhDmIuOXZTNvwb2IHBx9hj2kxvcDyRIh5nzOgQ==}
+ workbox-broadcast-update@7.3.0:
+ resolution: {integrity: sha512-T9/F5VEdJVhwmrIAE+E/kq5at2OY6+OXXgOWQevnubal6sO92Gjo24v6dCVwQiclAF5NS3hlmsifRrpQzZCdUA==}
- workbox-build@7.1.1:
- resolution: {integrity: sha512-WdkVdC70VMpf5NBCtNbiwdSZeKVuhTEd5PV3mAwpTQCGAB5XbOny1P9egEgNdetv4srAMmMKjvBk4RD58LpooA==}
+ workbox-build@7.3.0:
+ resolution: {integrity: sha512-JGL6vZTPlxnlqZRhR/K/msqg3wKP+m0wfEUVosK7gsYzSgeIxvZLi1ViJJzVL7CEeI8r7rGFV973RiEqkP3lWQ==}
engines: {node: '>=16.0.0'}
- workbox-cacheable-response@7.1.0:
- resolution: {integrity: sha512-iwsLBll8Hvua3xCuBB9h92+/e0wdsmSVgR2ZlvcfjepZWwhd3osumQB3x9o7flj+FehtWM2VHbZn8UJeBXXo6Q==}
+ workbox-cacheable-response@7.3.0:
+ resolution: {integrity: sha512-eAFERIg6J2LuyELhLlmeRcJFa5e16Mj8kL2yCDbhWE+HUun9skRQrGIFVUagqWj4DMaaPSMWfAolM7XZZxNmxA==}
- workbox-core@7.1.0:
- resolution: {integrity: sha512-5KB4KOY8rtL31nEF7BfvU7FMzKT4B5TkbYa2tzkS+Peqj0gayMT9SytSFtNzlrvMaWgv6y/yvP9C0IbpFjV30Q==}
+ workbox-core@7.3.0:
+ resolution: {integrity: sha512-Z+mYrErfh4t3zi7NVTvOuACB0A/jA3bgxUN3PwtAVHvfEsZxV9Iju580VEETug3zYJRc0Dmii/aixI/Uxj8fmw==}
- workbox-expiration@7.1.0:
- resolution: {integrity: sha512-m5DcMY+A63rJlPTbbBNtpJ20i3enkyOtSgYfv/l8h+D6YbbNiA0zKEkCUaMsdDlxggla1oOfRkyqTvl5Ni5KQQ==}
+ workbox-expiration@7.3.0:
+ resolution: {integrity: sha512-lpnSSLp2BM+K6bgFCWc5bS1LR5pAwDWbcKt1iL87/eTSJRdLdAwGQznZE+1czLgn/X05YChsrEegTNxjM067vQ==}
- workbox-google-analytics@7.1.0:
- resolution: {integrity: sha512-FvE53kBQHfVTcZyczeBVRexhh7JTkyQ8HAvbVY6mXd2n2A7Oyz/9fIwnY406ZcDhvE4NFfKGjW56N4gBiqkrew==}
+ workbox-google-analytics@7.3.0:
+ resolution: {integrity: sha512-ii/tSfFdhjLHZ2BrYgFNTrb/yk04pw2hasgbM70jpZfLk0vdJAXgaiMAWsoE+wfJDNWoZmBYY0hMVI0v5wWDbg==}
- workbox-navigation-preload@7.1.0:
- resolution: {integrity: sha512-4wyAbo0vNI/X0uWNJhCMKxnPanNyhybsReMGN9QUpaePLTiDpKxPqFxl4oUmBNddPwIXug01eTSLVIFXimRG/A==}
+ workbox-navigation-preload@7.3.0:
+ resolution: {integrity: sha512-fTJzogmFaTv4bShZ6aA7Bfj4Cewaq5rp30qcxl2iYM45YD79rKIhvzNHiFj1P+u5ZZldroqhASXwwoyusnr2cg==}
- workbox-precaching@7.1.0:
- resolution: {integrity: sha512-LyxzQts+UEpgtmfnolo0hHdNjoB7EoRWcF7EDslt+lQGd0lW4iTvvSe3v5JiIckQSB5KTW5xiCqjFviRKPj1zA==}
+ workbox-precaching@7.3.0:
+ resolution: {integrity: sha512-ckp/3t0msgXclVAYaNndAGeAoWQUv7Rwc4fdhWL69CCAb2UHo3Cef0KIUctqfQj1p8h6aGyz3w8Cy3Ihq9OmIw==}
- workbox-range-requests@7.1.0:
- resolution: {integrity: sha512-m7+O4EHolNs5yb/79CrnwPR/g/PRzMFYEdo01LqwixVnc/sbzNSvKz0d04OE3aMRel1CwAAZQheRsqGDwATgPQ==}
+ workbox-range-requests@7.3.0:
+ resolution: {integrity: sha512-EyFmM1KpDzzAouNF3+EWa15yDEenwxoeXu9bgxOEYnFfCxns7eAxA9WSSaVd8kujFFt3eIbShNqa4hLQNFvmVQ==}
- workbox-recipes@7.1.0:
- resolution: {integrity: sha512-NRrk4ycFN9BHXJB6WrKiRX3W3w75YNrNrzSX9cEZgFB5ubeGoO8s/SDmOYVrFYp9HMw6sh1Pm3eAY/1gVS8YLg==}
+ workbox-recipes@7.3.0:
+ resolution: {integrity: sha512-BJro/MpuW35I/zjZQBcoxsctgeB+kyb2JAP5EB3EYzePg8wDGoQuUdyYQS+CheTb+GhqJeWmVs3QxLI8EBP1sg==}
- workbox-routing@7.1.0:
- resolution: {integrity: sha512-oOYk+kLriUY2QyHkIilxUlVcFqwduLJB7oRZIENbqPGeBP/3TWHYNNdmGNhz1dvKuw7aqvJ7CQxn27/jprlTdg==}
+ workbox-routing@7.3.0:
+ resolution: {integrity: sha512-ZUlysUVn5ZUzMOmQN3bqu+gK98vNfgX/gSTZ127izJg/pMMy4LryAthnYtjuqcjkN4HEAx1mdgxNiKJMZQM76A==}
- workbox-strategies@7.1.0:
- resolution: {integrity: sha512-/UracPiGhUNehGjRm/tLUQ+9PtWmCbRufWtV0tNrALuf+HZ4F7cmObSEK+E4/Bx1p8Syx2tM+pkIrvtyetdlew==}
+ workbox-strategies@7.3.0:
+ resolution: {integrity: sha512-tmZydug+qzDFATwX7QiEL5Hdf7FrkhjaF9db1CbB39sDmEZJg3l9ayDvPxy8Y18C3Y66Nrr9kkN1f/RlkDgllg==}
- workbox-streams@7.1.0:
- resolution: {integrity: sha512-WyHAVxRXBMfysM8ORwiZnI98wvGWTVAq/lOyBjf00pXFvG0mNaVz4Ji+u+fKa/mf1i2SnTfikoYKto4ihHeS6w==}
+ workbox-streams@7.3.0:
+ resolution: {integrity: sha512-SZnXucyg8x2Y61VGtDjKPO5EgPUG5NDn/v86WYHX+9ZqvAsGOytP0Jxp1bl663YUuMoXSAtsGLL+byHzEuMRpw==}
- workbox-sw@7.1.0:
- resolution: {integrity: sha512-Hml/9+/njUXBglv3dtZ9WBKHI235AQJyLBV1G7EFmh4/mUdSQuXui80RtjDeVRrXnm/6QWgRUEHG3/YBVbxtsA==}
+ workbox-sw@7.3.0:
+ resolution: {integrity: sha512-aCUyoAZU9IZtH05mn0ACUpyHzPs0lMeJimAYkQkBsOWiqaJLgusfDCR+yllkPkFRxWpZKF8vSvgHYeG7LwhlmA==}
- workbox-window@7.1.0:
- resolution: {integrity: sha512-ZHeROyqR+AS5UPzholQRDttLFqGMwP0Np8MKWAdyxsDETxq3qOAyXvqessc3GniohG6e0mAqSQyKOHmT8zPF7g==}
+ workbox-window@7.3.0:
+ resolution: {integrity: sha512-qW8PDy16OV1UBaUNGlTVcepzrlzyzNW/ZJvFQQs2j2TzGsg6IKjcpZC1RSquqQnTOafl5pCj5bGfAHlCjOOjdA==}
wrap-ansi@7.0.0:
resolution: {integrity: sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==}
@@ -8153,6 +8939,10 @@ packages:
resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
engines: {node: '>=18'}
+ yallist@5.0.0:
+ resolution: {integrity: sha512-YgvUTfwqyc7UXVMrB+SImsVYSmTS8X/tSrtdNZMImM+n7+QTriRXyXim0mBrTXNeqzVF0KWGgHPeiyViFFrNDw==}
+ engines: {node: '>=18'}
+
yaml-ast-parser@0.0.43:
resolution: {integrity: sha512-2PTINUwsRqSd+s8XxKaJWQlUuEMHJQyEuh2edBbW8KNJz0SJPwUSD2zRWqezFEdN7IzAgeuYHFUCF7o8zRdZ0A==}
@@ -8188,6 +8978,8 @@ packages:
resolution: {integrity: sha512-zK7YHHz4ZXpW89AHXUPbQVGKI7uvkd3hzusTdotCg1UxyaVtg0zFJSTfW/Dq5f7OBBVnq6cZIaC8Ti4hb6dtCA==}
engines: {node: '>= 14'}
+ zod@3.24.1:
+ resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
zod@3.24.1:
resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
@@ -8198,19 +8990,23 @@ snapshots:
'@ampproject/remapping@2.3.0':
dependencies:
+ '@jridgewell/gen-mapping': 0.3.8
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
+ '@antfu/eslint-config@3.12.1(@typescript-eslint/utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@unocss/eslint-plugin@0.65.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
'@antfu/eslint-config@3.12.1(@typescript-eslint/utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@unocss/eslint-plugin@0.65.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
'@antfu/install-pkg': 0.5.0
'@clack/prompts': 0.9.0
'@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ '@clack/prompts': 0.9.0
+ '@eslint-community/eslint-plugin-eslint-comments': 4.4.1(eslint@9.17.0(jiti@2.4.2))
'@eslint/markdown': 6.2.1
'@stylistic/eslint-plugin': 2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
'@typescript-eslint/eslint-plugin': 8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
'@typescript-eslint/parser': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
- '@vitest/eslint-plugin': 1.1.21(@typescript-eslint/utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ '@vitest/eslint-plugin': 1.1.20(@typescript-eslint/utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
eslint: 9.17.0(jiti@2.4.2)
eslint-config-flat-gitignore: 0.3.0(eslint@9.17.0(jiti@2.4.2))
eslint-flat-config-utils: 0.4.0
@@ -8221,6 +9017,13 @@ snapshots:
eslint-plugin-jsdoc: 50.6.1(eslint@9.17.0(jiti@2.4.2))
eslint-plugin-jsonc: 2.18.2(eslint@9.17.0(jiti@2.4.2))
eslint-plugin-n: 17.15.1(eslint@9.17.0(jiti@2.4.2))
+ eslint-merge-processors: 0.1.0(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-antfu: 2.7.0(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-command: 0.2.7(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-import-x: 4.6.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ eslint-plugin-jsdoc: 50.6.1(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-jsonc: 2.18.2(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-n: 17.15.1(eslint@9.17.0(jiti@2.4.2))
eslint-plugin-no-only-tests: 3.3.0
eslint-plugin-perfectionist: 4.4.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
eslint-plugin-regexp: 2.7.0(eslint@9.17.0(jiti@2.4.2))
@@ -8231,16 +9034,27 @@ snapshots:
eslint-plugin-yml: 1.16.0(eslint@9.17.0(jiti@2.4.2))
eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))
globals: 15.14.0
+ eslint-plugin-perfectionist: 4.4.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ eslint-plugin-regexp: 2.7.0(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-toml: 0.12.0(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-unicorn: 56.0.1(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-unused-imports: 4.1.4(@typescript-eslint/eslint-plugin@8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-vue: 9.32.0(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-yml: 1.16.0(eslint@9.17.0(jiti@2.4.2))
+ eslint-processor-vue-blocks: 0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2))
+ globals: 15.14.0
jsonc-eslint-parser: 2.4.0
local-pkg: 0.5.1
parse-gitignore: 2.0.0
picocolors: 1.1.1
toml-eslint-parser: 0.10.0
vue-eslint-parser: 9.4.3(eslint@9.17.0(jiti@2.4.2))
+ vue-eslint-parser: 9.4.3(eslint@9.17.0(jiti@2.4.2))
yaml-eslint-parser: 1.2.3
yargs: 17.7.2
optionalDependencies:
'@unocss/eslint-plugin': 0.65.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ '@unocss/eslint-plugin': 0.65.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
transitivePeerDependencies:
- '@eslint/json'
- '@typescript-eslint/utils'
@@ -8252,12 +9066,12 @@ snapshots:
'@antfu/install-pkg@0.4.1':
dependencies:
package-manager-detector: 0.2.8
- tinyexec: 0.3.2
+ tinyexec: 0.3.1
'@antfu/install-pkg@0.5.0':
dependencies:
package-manager-detector: 0.2.8
- tinyexec: 0.3.2
+ tinyexec: 0.3.1
'@antfu/utils@0.7.10': {}
@@ -8287,9 +9101,11 @@ snapshots:
'@babel/parser': 7.26.3
'@babel/template': 7.25.9
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
'@babel/types': 7.26.3
convert-source-map: 2.0.0
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -8301,8 +9117,10 @@ snapshots:
'@babel/parser': 7.26.3
'@babel/types': 7.26.3
'@jridgewell/gen-mapping': 0.3.8
+ '@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.1.0
+ jsesc: 3.1.0
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
@@ -8313,6 +9131,7 @@ snapshots:
'@babel/compat-data': 7.26.3
'@babel/helper-validator-option': 7.25.9
browserslist: 4.24.3
+ browserslist: 4.24.3
lru-cache: 5.1.1
semver: 6.3.1
@@ -8325,6 +9144,7 @@ snapshots:
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -8342,13 +9162,16 @@ snapshots:
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
lodash.debounce: 4.0.8
resolve: 1.22.10
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
+ '@babel/traverse': 7.26.4
'@babel/traverse': 7.26.4
'@babel/types': 7.26.3
transitivePeerDependencies:
@@ -8356,6 +9179,7 @@ snapshots:
'@babel/helper-module-imports@7.25.9':
dependencies:
+ '@babel/traverse': 7.26.4
'@babel/traverse': 7.26.4
'@babel/types': 7.26.3
transitivePeerDependencies:
@@ -8367,6 +9191,7 @@ snapshots:
'@babel/helper-module-imports': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -8382,6 +9207,7 @@ snapshots:
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-wrap-function': 7.25.9
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -8391,11 +9217,13 @@ snapshots:
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
+ '@babel/traverse': 7.26.4
'@babel/traverse': 7.26.4
'@babel/types': 7.26.3
transitivePeerDependencies:
@@ -8411,6 +9239,7 @@ snapshots:
dependencies:
'@babel/template': 7.25.9
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
'@babel/types': 7.26.3
transitivePeerDependencies:
- supports-color
@@ -8429,6 +9258,7 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -8456,6 +9286,7 @@ snapshots:
'@babel/core': 7.26.0
'@babel/helper-plugin-utils': 7.25.9
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -8519,6 +9350,7 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -8565,6 +9397,7 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-replace-supers': 7.25.9(@babel/core@7.26.0)
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -8626,6 +9459,7 @@ snapshots:
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -8672,6 +9506,7 @@ snapshots:
'@babel/helper-plugin-utils': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
transitivePeerDependencies:
- supports-color
@@ -8925,6 +9760,7 @@ snapshots:
regenerator-runtime: 0.14.1
'@babel/standalone@7.26.4': {}
+ '@babel/standalone@7.26.4': {}
'@babel/template@7.25.9':
dependencies:
@@ -8932,6 +9768,7 @@ snapshots:
'@babel/parser': 7.26.3
'@babel/types': 7.26.3
+ '@babel/traverse@7.26.4':
'@babel/traverse@7.26.4':
dependencies:
'@babel/code-frame': 7.26.2
@@ -8940,6 +9777,7 @@ snapshots:
'@babel/template': 7.25.9
'@babel/types': 7.26.3
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -8955,12 +9793,15 @@ snapshots:
dependencies:
blob-to-buffer: 1.2.9
cross-fetch: 3.2.0
+ cross-fetch: 3.2.0
fontkit: 2.0.4
transitivePeerDependencies:
- encoding
+ '@changesets/apply-release-plan@7.0.7':
'@changesets/apply-release-plan@7.0.7':
dependencies:
+ '@changesets/config': 3.0.5
'@changesets/config': 3.0.5
'@changesets/get-version-range-type': 0.4.0
'@changesets/git': 3.0.2
@@ -8996,15 +9837,19 @@ snapshots:
transitivePeerDependencies:
- encoding
+ '@changesets/cli@2.27.11':
'@changesets/cli@2.27.11':
dependencies:
+ '@changesets/apply-release-plan': 7.0.7
'@changesets/apply-release-plan': 7.0.7
'@changesets/assemble-release-plan': 6.0.5
'@changesets/changelog-git': 0.2.0
'@changesets/config': 3.0.5
+ '@changesets/config': 3.0.5
'@changesets/errors': 0.2.0
'@changesets/get-dependents-graph': 2.1.2
'@changesets/get-release-plan': 4.0.6
+ '@changesets/get-release-plan': 4.0.6
'@changesets/git': 3.0.2
'@changesets/logger': 0.1.1
'@changesets/pre': 2.0.1
@@ -9021,12 +9866,14 @@ snapshots:
mri: 1.2.0
p-limit: 2.3.0
package-manager-detector: 0.2.8
+ package-manager-detector: 0.2.8
picocolors: 1.1.1
resolve-from: 5.0.0
semver: 7.6.3
spawndamnit: 3.0.1
term-size: 2.2.1
+ '@changesets/config@3.0.5':
'@changesets/config@3.0.5':
dependencies:
'@changesets/errors': 0.2.0
@@ -9055,10 +9902,12 @@ snapshots:
transitivePeerDependencies:
- encoding
+ '@changesets/get-release-plan@4.0.6':
'@changesets/get-release-plan@4.0.6':
dependencies:
'@changesets/assemble-release-plan': 6.0.5
'@changesets/config': 3.0.5
+ '@changesets/config': 3.0.5
'@changesets/pre': 2.0.1
'@changesets/read': 0.6.2
'@changesets/types': 6.0.0
@@ -9116,20 +9965,23 @@ snapshots:
human-id: 1.0.2
prettier: 2.8.8
+ '@clack/core@0.4.0':
'@clack/core@0.4.0':
dependencies:
picocolors: 1.1.1
sisteransi: 1.0.5
+ '@clack/prompts@0.9.0':
'@clack/prompts@0.9.0':
dependencies:
+ '@clack/core': 0.4.0
'@clack/core': 0.4.0
picocolors: 1.1.1
sisteransi: 1.0.5
- '@clerk/backend@1.21.4(react@18.3.1)':
+ '@clerk/backend@1.21.4(react@19.0.0)':
dependencies:
- '@clerk/shared': 2.20.4(react@18.3.1)
+ '@clerk/shared': 2.20.4(react@19.0.0)
'@clerk/types': 4.40.0
cookie: 0.7.0
snakecase-keys: 5.4.4
@@ -9138,32 +9990,36 @@ snapshots:
- react
- react-dom
- '@clerk/clerk-sdk-node@5.1.4(react@18.3.1)':
+ '@clerk/clerk-sdk-node@5.1.4(react@19.0.0)':
dependencies:
- '@clerk/backend': 1.21.4(react@18.3.1)
- '@clerk/shared': 2.20.4(react@18.3.1)
+ '@clerk/backend': 1.21.4(react@19.0.0)
+ '@clerk/shared': 2.20.4(react@19.0.0)
'@clerk/types': 4.40.0
tslib: 2.4.1
transitivePeerDependencies:
- react
- react-dom
- '@clerk/shared@2.20.4(react@18.3.1)':
+ '@clerk/shared@2.20.4(react@19.0.0)':
dependencies:
+ '@clerk/types': 4.40.0
'@clerk/types': 4.40.0
dequal: 2.0.3
glob-to-regexp: 0.4.1
js-cookie: 3.0.5
std-env: 3.8.0
- swr: 2.3.0(react@18.3.1)
+ swr: 2.3.0(react@19.0.0)
optionalDependencies:
- react: 18.3.1
+ react: 19.0.0
+ '@clerk/themes@2.2.3':
'@clerk/themes@2.2.3':
dependencies:
+ '@clerk/types': 4.40.0
'@clerk/types': 4.40.0
tslib: 2.4.1
+ '@clerk/types@4.40.0':
'@clerk/types@4.40.0':
dependencies:
csstype: 3.1.1
@@ -9188,6 +10044,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@emotion/cache@11.14.0':
'@emotion/cache@11.14.0':
dependencies:
'@emotion/memoize': 0.9.0
@@ -9200,6 +10057,7 @@ snapshots:
dependencies:
'@emotion/babel-plugin': 11.13.5
'@emotion/cache': 11.14.0
+ '@emotion/cache': 11.14.0
'@emotion/serialize': 1.3.3
'@emotion/sheet': 1.4.0
'@emotion/utils': 1.4.2
@@ -9238,6 +10096,7 @@ snapshots:
'@esbuild/aix-ppc64@0.23.1':
optional: true
+ '@esbuild/aix-ppc64@0.24.2':
'@esbuild/aix-ppc64@0.24.2':
optional: true
@@ -9247,6 +10106,7 @@ snapshots:
'@esbuild/android-arm64@0.23.1':
optional: true
+ '@esbuild/android-arm64@0.24.2':
'@esbuild/android-arm64@0.24.2':
optional: true
@@ -9256,6 +10116,7 @@ snapshots:
'@esbuild/android-arm@0.23.1':
optional: true
+ '@esbuild/android-arm@0.24.2':
'@esbuild/android-arm@0.24.2':
optional: true
@@ -9265,6 +10126,7 @@ snapshots:
'@esbuild/android-x64@0.23.1':
optional: true
+ '@esbuild/android-x64@0.24.2':
'@esbuild/android-x64@0.24.2':
optional: true
@@ -9274,6 +10136,7 @@ snapshots:
'@esbuild/darwin-arm64@0.23.1':
optional: true
+ '@esbuild/darwin-arm64@0.24.2':
'@esbuild/darwin-arm64@0.24.2':
optional: true
@@ -9283,6 +10146,7 @@ snapshots:
'@esbuild/darwin-x64@0.23.1':
optional: true
+ '@esbuild/darwin-x64@0.24.2':
'@esbuild/darwin-x64@0.24.2':
optional: true
@@ -9292,6 +10156,7 @@ snapshots:
'@esbuild/freebsd-arm64@0.23.1':
optional: true
+ '@esbuild/freebsd-arm64@0.24.2':
'@esbuild/freebsd-arm64@0.24.2':
optional: true
@@ -9301,6 +10166,7 @@ snapshots:
'@esbuild/freebsd-x64@0.23.1':
optional: true
+ '@esbuild/freebsd-x64@0.24.2':
'@esbuild/freebsd-x64@0.24.2':
optional: true
@@ -9310,6 +10176,7 @@ snapshots:
'@esbuild/linux-arm64@0.23.1':
optional: true
+ '@esbuild/linux-arm64@0.24.2':
'@esbuild/linux-arm64@0.24.2':
optional: true
@@ -9319,6 +10186,7 @@ snapshots:
'@esbuild/linux-arm@0.23.1':
optional: true
+ '@esbuild/linux-arm@0.24.2':
'@esbuild/linux-arm@0.24.2':
optional: true
@@ -9328,6 +10196,7 @@ snapshots:
'@esbuild/linux-ia32@0.23.1':
optional: true
+ '@esbuild/linux-ia32@0.24.2':
'@esbuild/linux-ia32@0.24.2':
optional: true
@@ -9337,6 +10206,7 @@ snapshots:
'@esbuild/linux-loong64@0.23.1':
optional: true
+ '@esbuild/linux-loong64@0.24.2':
'@esbuild/linux-loong64@0.24.2':
optional: true
@@ -9346,6 +10216,7 @@ snapshots:
'@esbuild/linux-mips64el@0.23.1':
optional: true
+ '@esbuild/linux-mips64el@0.24.2':
'@esbuild/linux-mips64el@0.24.2':
optional: true
@@ -9355,6 +10226,7 @@ snapshots:
'@esbuild/linux-ppc64@0.23.1':
optional: true
+ '@esbuild/linux-ppc64@0.24.2':
'@esbuild/linux-ppc64@0.24.2':
optional: true
@@ -9364,6 +10236,7 @@ snapshots:
'@esbuild/linux-riscv64@0.23.1':
optional: true
+ '@esbuild/linux-riscv64@0.24.2':
'@esbuild/linux-riscv64@0.24.2':
optional: true
@@ -9373,6 +10246,7 @@ snapshots:
'@esbuild/linux-s390x@0.23.1':
optional: true
+ '@esbuild/linux-s390x@0.24.2':
'@esbuild/linux-s390x@0.24.2':
optional: true
@@ -9385,6 +10259,10 @@ snapshots:
'@esbuild/linux-x64@0.24.2':
optional: true
+ '@esbuild/netbsd-arm64@0.24.2':
+ '@esbuild/linux-x64@0.24.2':
+ optional: true
+
'@esbuild/netbsd-arm64@0.24.2':
optional: true
@@ -9394,12 +10272,14 @@ snapshots:
'@esbuild/netbsd-x64@0.23.1':
optional: true
+ '@esbuild/netbsd-x64@0.24.2':
'@esbuild/netbsd-x64@0.24.2':
optional: true
'@esbuild/openbsd-arm64@0.23.1':
optional: true
+ '@esbuild/openbsd-arm64@0.24.2':
'@esbuild/openbsd-arm64@0.24.2':
optional: true
@@ -9409,6 +10289,7 @@ snapshots:
'@esbuild/openbsd-x64@0.23.1':
optional: true
+ '@esbuild/openbsd-x64@0.24.2':
'@esbuild/openbsd-x64@0.24.2':
optional: true
@@ -9418,6 +10299,7 @@ snapshots:
'@esbuild/sunos-x64@0.23.1':
optional: true
+ '@esbuild/sunos-x64@0.24.2':
'@esbuild/sunos-x64@0.24.2':
optional: true
@@ -9427,6 +10309,7 @@ snapshots:
'@esbuild/win32-arm64@0.23.1':
optional: true
+ '@esbuild/win32-arm64@0.24.2':
'@esbuild/win32-arm64@0.24.2':
optional: true
@@ -9436,6 +10319,7 @@ snapshots:
'@esbuild/win32-ia32@0.23.1':
optional: true
+ '@esbuild/win32-ia32@0.24.2':
'@esbuild/win32-ia32@0.24.2':
optional: true
@@ -9445,30 +10329,38 @@ snapshots:
'@esbuild/win32-x64@0.23.1':
optional: true
+ '@esbuild/win32-x64@0.24.2':
'@esbuild/win32-x64@0.24.2':
optional: true
+ '@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.17.0(jiti@2.4.2))':
'@eslint-community/eslint-plugin-eslint-comments@4.4.1(eslint@9.17.0(jiti@2.4.2))':
dependencies:
escape-string-regexp: 4.0.0
eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.17.0(jiti@2.4.2)
ignore: 5.3.2
+ '@eslint-community/eslint-utils@4.4.1(eslint@9.17.0(jiti@2.4.2))':
'@eslint-community/eslint-utils@4.4.1(eslint@9.17.0(jiti@2.4.2))':
dependencies:
+ eslint: 9.17.0(jiti@2.4.2)
eslint: 9.17.0(jiti@2.4.2)
eslint-visitor-keys: 3.4.3
'@eslint-community/regexpp@4.12.1': {}
+ '@eslint/compat@1.2.4(eslint@9.17.0(jiti@2.4.2))':
'@eslint/compat@1.2.4(eslint@9.17.0(jiti@2.4.2))':
optionalDependencies:
eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.17.0(jiti@2.4.2)
'@eslint/config-array@0.19.1':
dependencies:
'@eslint/object-schema': 2.1.5
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -9481,6 +10373,7 @@ snapshots:
dependencies:
ajv: 6.12.6
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
espree: 10.3.0
globals: 14.0.0
ignore: 5.3.2
@@ -9492,6 +10385,7 @@ snapshots:
- supports-color
'@eslint/js@9.17.0': {}
+ '@eslint/js@9.17.0': {}
'@eslint/markdown@6.2.1':
dependencies:
@@ -9545,10 +10439,7 @@ snapshots:
'@humanwhocodes/retry@0.4.1': {}
'@iconify-json/charm@1.2.2':
- dependencies:
- '@iconify/types': 2.0.0
-
- '@iconify-json/lucide@1.2.20':
+ '@iconify-json/charm@1.2.2':
dependencies:
'@iconify/types': 2.0.0
@@ -9560,16 +10451,13 @@ snapshots:
dependencies:
'@iconify/types': 2.0.0
- '@iconify-json/svg-spinners@1.2.2':
- dependencies:
- '@iconify/types': 2.0.0
-
- '@iconify/collections@1.0.501':
+ '@iconify/collections@1.0.500':
dependencies:
'@iconify/types': 2.0.0
'@iconify/types@2.0.0': {}
+ '@iconify/utils@2.2.1':
'@iconify/utils@2.2.1':
dependencies:
'@antfu/install-pkg': 0.4.1
@@ -9577,12 +10465,15 @@ snapshots:
'@iconify/types': 2.0.0
debug: 4.4.0(supports-color@9.4.0)
globals: 15.14.0
+ debug: 4.4.0(supports-color@9.4.0)
+ globals: 15.14.0
kolorist: 1.8.0
local-pkg: 0.5.1
mlly: 1.7.3
transitivePeerDependencies:
- supports-color
+ '@iconify/vue@4.2.0(vue@3.5.13(typescript@5.7.2))':
'@iconify/vue@4.2.0(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@iconify/types': 2.0.0
@@ -9611,6 +10502,11 @@ snapshots:
dependencies:
minipass: 7.1.2
+ '@jridgewell/gen-mapping@0.3.8':
+ '@isaacs/fs-minipass@4.0.1':
+ dependencies:
+ minipass: 7.1.2
+
'@jridgewell/gen-mapping@0.3.8':
dependencies:
'@jridgewell/set-array': 1.2.1
@@ -9623,6 +10519,7 @@ snapshots:
'@jridgewell/source-map@0.3.6':
dependencies:
+ '@jridgewell/gen-mapping': 0.3.8
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
@@ -9638,6 +10535,7 @@ snapshots:
'@kwsites/file-exists@1.1.1':
dependencies:
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -9668,15 +10566,19 @@ snapshots:
'@mapbox/mapbox-gl-supported@2.0.1': {}
+ '@mapbox/node-pre-gyp@2.0.0-rc.0':
'@mapbox/node-pre-gyp@2.0.0-rc.0':
dependencies:
- consola: 3.3.3
+ consola: 3.3.2
detect-libc: 2.0.3
https-proxy-agent: 7.0.6(supports-color@9.4.0)
+ https-proxy-agent: 7.0.6(supports-color@9.4.0)
node-fetch: 2.7.0
nopt: 8.0.0
+ nopt: 8.0.0
semver: 7.6.3
tar: 7.4.3
+ tar: 7.4.3
transitivePeerDependencies:
- encoding
- supports-color
@@ -9707,6 +10609,7 @@ snapshots:
'@netlify/node-cookies@0.1.0': {}
+ '@netlify/open-api@2.35.0': {}
'@netlify/open-api@2.35.0': {}
'@netlify/sentry@0.0.10':
@@ -9731,19 +10634,23 @@ snapshots:
dependencies:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.18.0
+ fastq: 1.18.0
- '@nuxt/content@2.13.4(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)(magicast@0.3.5)(nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1))(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))':
+ '@nuxt/content@2.13.4(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)(magicast@0.3.5)(nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(aws4fetch@1.0.20)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1))(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))':
dependencies:
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
+ '@nuxtjs/mdc': 0.9.5(magicast@0.3.5)(rollup@4.29.1)
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@nuxtjs/mdc': 0.9.5(magicast@0.3.5)(rollup@4.29.1)
'@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2))
'@vueuse/head': 2.0.0(vue@3.5.13(typescript@5.7.2))
- '@vueuse/nuxt': 11.3.0(magicast@0.3.5)(nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1))(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))
- consola: 3.3.3
+ '@vueuse/nuxt': 11.3.0(magicast@0.3.5)(nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(aws4fetch@1.0.20)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1))(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))
+ consola: 3.3.2
defu: 6.1.4
destr: 2.0.3
json5: 2.2.3
knitwork: 1.2.0
+ knitwork: 1.2.0
listhen: 1.9.0
mdast-util-to-string: 4.0.0
mdurl: 2.0.0
@@ -9755,11 +10662,12 @@ snapshots:
pathe: 1.1.2
scule: 1.3.0
shiki: 1.24.4
+ shiki: 1.24.4
slugify: 1.6.6
socket.io-client: 4.8.1
ufo: 1.5.4
unist-util-stringify-position: 4.0.0
- unstorage: 1.14.4(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)
+ unstorage: 1.14.3(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)
ws: 8.18.0
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -9770,15 +10678,19 @@ snapshots:
- '@azure/storage-blob'
- '@capacitor/preferences'
- '@deno/kv'
+ - '@deno/kv'
- '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/blob'
+ - '@vercel/blob'
- '@vercel/kv'
- '@vue/composition-api'
- aws4fetch
+ - aws4fetch
- bufferutil
- db0
+ - db0
- idb-keyval
- ioredis
- magicast
@@ -9786,25 +10698,31 @@ snapshots:
- rollup
- supports-color
- uploadthing
+ - uploadthing
- utf-8-validate
- vue
'@nuxt/devalue@2.0.2': {}
+ '@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))':
'@nuxt/devtools-kit@1.7.0(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))':
dependencies:
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
+ '@nuxt/schema': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@nuxt/schema': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
execa: 7.2.0
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
+ vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
transitivePeerDependencies:
- magicast
- rollup
- supports-color
+ '@nuxt/devtools-wizard@1.7.0':
'@nuxt/devtools-wizard@1.7.0':
dependencies:
- consola: 3.3.3
+ consola: 3.3.2
diff: 7.0.0
execa: 7.2.0
global-directory: 4.0.1
@@ -9815,6 +10733,7 @@ snapshots:
rc9: 2.1.2
semver: 7.6.3
+ '@nuxt/devtools@1.7.0(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
'@nuxt/devtools@1.7.0(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@antfu/utils': 0.7.10
@@ -9823,8 +10742,13 @@ snapshots:
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@vue/devtools-core': 7.6.8(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
'@vue/devtools-kit': 7.6.8
+ '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))
+ '@nuxt/devtools-wizard': 1.7.0
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
+ '@vue/devtools-core': 7.6.8(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ '@vue/devtools-kit': 7.6.8
birpc: 0.2.19
- consola: 3.3.3
+ consola: 3.3.2
cronstrue: 2.52.0
destr: 2.0.3
error-stack-parser-es: 0.1.5
@@ -9853,6 +10777,10 @@ snapshots:
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.0(magicast@0.3.5)(rollup@4.29.1))(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))
vite-plugin-vue-inspector: 5.3.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))
+ unimport: 3.14.5(rollup@4.29.1)
+ vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
+ vite-plugin-inspect: 0.8.9(@nuxt/kit@3.15.0(magicast@0.3.5)(rollup@4.29.1))(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))
+ vite-plugin-vue-inspector: 5.3.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))
which: 3.0.1
ws: 8.18.0
transitivePeerDependencies:
@@ -9862,19 +10790,26 @@ snapshots:
- utf-8-validate
- vue
- '@nuxt/fonts@0.10.3(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))':
+ '@nuxt/fonts@0.10.3(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))':
dependencies:
+ '@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
+ chalk: 5.4.1
+ css-tree: 3.1.0
'@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
chalk: 5.4.1
css-tree: 3.1.0
defu: 6.1.4
esbuild: 0.24.2
+ esbuild: 0.24.2
fontaine: 0.5.0
h3: 1.13.0
jiti: 2.4.2
+ jiti: 2.4.2
magic-regexp: 0.8.0
magic-string: 0.30.17
+ magic-string: 0.30.17
node-fetch-native: 1.6.4
ohash: 1.1.4
pathe: 1.1.2
@@ -9882,8 +10817,8 @@ snapshots:
tinyglobby: 0.2.10
ufo: 1.5.4
unifont: 0.1.7
- unplugin: 2.1.2
- unstorage: 1.14.4(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)
+ unplugin: 2.1.0
+ unstorage: 1.14.3(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -9893,13 +10828,17 @@ snapshots:
- '@azure/storage-blob'
- '@capacitor/preferences'
- '@deno/kv'
+ - '@deno/kv'
- '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/blob'
+ - '@vercel/blob'
- '@vercel/kv'
- aws4fetch
- db0
+ - aws4fetch
+ - db0
- encoding
- idb-keyval
- ioredis
@@ -9907,22 +10846,25 @@ snapshots:
- rollup
- supports-color
- uploadthing
+ - uploadthing
- vite
+ '@nuxt/icon@1.10.3(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
'@nuxt/icon@1.10.3(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
dependencies:
- '@iconify/collections': 1.0.501
+ '@iconify/collections': 1.0.500
'@iconify/types': 2.0.0
'@iconify/utils': 2.2.1
'@iconify/vue': 4.2.0(vue@3.5.13(typescript@5.7.2))
'@nuxt/devtools-kit': 1.7.0(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
- consola: 3.3.3
+ consola: 3.3.2
local-pkg: 0.5.1
mlly: 1.7.3
ohash: 1.1.4
pathe: 1.1.2
picomatch: 4.0.2
+ picomatch: 4.0.2
std-env: 3.8.0
tinyglobby: 0.2.10
transitivePeerDependencies:
@@ -9932,10 +10874,10 @@ snapshots:
- vite
- vue
- '@nuxt/image@1.8.1(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)(magicast@0.3.5)(rollup@4.29.1)':
+ '@nuxt/image@1.8.1(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)(magicast@0.3.5)(rollup@4.29.1)':
dependencies:
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
- consola: 3.3.3
+ consola: 3.3.2
defu: 6.1.4
h3: 1.13.0
image-meta: 0.2.1
@@ -9945,7 +10887,7 @@ snapshots:
std-env: 3.8.0
ufo: 1.5.4
optionalDependencies:
- ipx: 2.1.0(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)
+ ipx: 2.1.0(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -9955,34 +10897,45 @@ snapshots:
- '@azure/storage-blob'
- '@capacitor/preferences'
- '@deno/kv'
+ - '@deno/kv'
- '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/blob'
+ - '@vercel/blob'
- '@vercel/kv'
- aws4fetch
- db0
+ - aws4fetch
+ - db0
- idb-keyval
- ioredis
- magicast
- rollup
- supports-color
- uploadthing
+ - uploadthing
+ '@nuxt/kit@3.15.0(magicast@0.3.5)(rollup@4.29.1)':
'@nuxt/kit@3.15.0(magicast@0.3.5)(rollup@4.29.1)':
dependencies:
+ '@nuxt/schema': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@nuxt/schema': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
c12: 2.0.1(magicast@0.3.5)
- consola: 3.3.3
+ consola: 3.3.2
defu: 6.1.4
destr: 2.0.3
globby: 14.0.2
ignore: 7.0.0
jiti: 2.4.2
+ ignore: 7.0.0
+ jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
+ knitwork: 1.2.0
mlly: 1.7.3
ohash: 1.1.4
+ ohash: 1.1.4
pathe: 1.1.2
pkg-types: 1.3.0
scule: 1.3.0
@@ -9991,16 +10944,20 @@ snapshots:
unctx: 2.4.1
unimport: 3.14.5(rollup@4.29.1)
untyped: 1.5.2
+ unctx: 2.4.1
+ unimport: 3.14.5(rollup@4.29.1)
+ untyped: 1.5.2
transitivePeerDependencies:
- magicast
- rollup
- supports-color
+ '@nuxt/schema@3.15.0(magicast@0.3.5)(rollup@4.29.1)':
'@nuxt/schema@3.15.0(magicast@0.3.5)(rollup@4.29.1)':
dependencies:
c12: 2.0.1(magicast@0.3.5)
compatx: 0.1.8
- consola: 3.3.3
+ consola: 3.3.2
defu: 6.1.4
hookable: 5.5.3
pathe: 1.1.2
@@ -10011,23 +10968,29 @@ snapshots:
uncrypto: 0.1.3
unimport: 3.14.5(rollup@4.29.1)
untyped: 1.5.2
+ unimport: 3.14.5(rollup@4.29.1)
+ untyped: 1.5.2
transitivePeerDependencies:
- magicast
- rollup
- supports-color
+ '@nuxt/telemetry@2.6.2(magicast@0.3.5)(rollup@4.29.1)':
'@nuxt/telemetry@2.6.2(magicast@0.3.5)(rollup@4.29.1)':
dependencies:
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
citty: 0.1.6
- consola: 3.3.3
+ consola: 3.3.2
destr: 2.0.3
dotenv: 16.4.7
git-url-parse: 16.0.0
+ git-url-parse: 16.0.0
is-docker: 3.0.0
jiti: 2.4.2
+ jiti: 2.4.2
ofetch: 1.4.1
package-manager-detector: 0.2.8
+ package-manager-detector: 0.2.8
parse-git-config: 3.0.0
pathe: 1.1.2
rc9: 2.1.2
@@ -10037,17 +11000,23 @@ snapshots:
- rollup
- supports-color
+ '@nuxt/vite-builder@3.15.0(@types/node@22.10.2)(eslint@9.17.0(jiti@2.4.2))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vue-tsc@2.2.0(typescript@5.7.2))(vue@3.5.13(typescript@5.7.2))(yaml@2.6.1)':
'@nuxt/vite-builder@3.15.0(@types/node@22.10.2)(eslint@9.17.0(jiti@2.4.2))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vue-tsc@2.2.0(typescript@5.7.2))(vue@3.5.13(typescript@5.7.2))(yaml@2.6.1)':
dependencies:
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.29.1)
+ '@vitejs/plugin-vue': 5.2.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ '@vitejs/plugin-vue-jsx': 4.1.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@rollup/plugin-replace': 6.0.2(rollup@4.29.1)
'@vitejs/plugin-vue': 5.2.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
'@vitejs/plugin-vue-jsx': 4.1.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
autoprefixer: 10.4.20(postcss@8.4.49)
- consola: 3.3.3
+ consola: 3.3.2
cssnano: 7.0.6(postcss@8.4.49)
defu: 6.1.4
esbuild: 0.24.2
+ esbuild: 0.24.2
escape-string-regexp: 5.0.0
externality: 1.0.2
get-port-please: 3.1.2
@@ -10055,17 +11024,20 @@ snapshots:
jiti: 2.4.2
knitwork: 1.2.0
magic-string: 0.30.17
+ jiti: 2.4.2
+ knitwork: 1.2.0
+ magic-string: 0.30.17
mlly: 1.7.3
ohash: 1.1.4
pathe: 1.1.2
perfect-debounce: 1.0.0
pkg-types: 1.3.0
postcss: 8.4.49
- rollup-plugin-visualizer: 5.13.1(rollup@4.29.1)
+ rollup-plugin-visualizer: 5.12.0(rollup@4.29.1)
std-env: 3.8.0
ufo: 1.5.4
unenv: 1.10.0
- unplugin: 2.1.2
+ unplugin: 2.1.0
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
vite-node: 2.1.8(@types/node@22.10.2)(terser@5.37.0)
vite-plugin-checker: 0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))
@@ -10090,14 +11062,18 @@ snapshots:
- supports-color
- terser
- tsx
+ - tsx
- typescript
- vls
- vti
- vue-tsc
- yaml
+ - yaml
+ '@nuxtjs/google-fonts@3.2.0(magicast@0.3.5)(rollup@4.29.1)':
'@nuxtjs/google-fonts@3.2.0(magicast@0.3.5)(rollup@4.29.1)':
dependencies:
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
google-fonts-helper: 3.6.0
pathe: 1.1.2
@@ -10106,14 +11082,17 @@ snapshots:
- rollup
- supports-color
+ '@nuxtjs/mdc@0.9.5(magicast@0.3.5)(rollup@4.29.1)':
'@nuxtjs/mdc@0.9.5(magicast@0.3.5)(rollup@4.29.1)':
dependencies:
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
+ '@shikijs/transformers': 1.24.4
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@shikijs/transformers': 1.24.4
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
'@vue/compiler-core': 3.5.13
- consola: 3.3.3
+ consola: 3.3.2
debug: 4.4.0(supports-color@9.4.0)
defu: 6.1.4
destr: 2.0.3
@@ -10134,10 +11113,12 @@ snapshots:
remark-emoji: 5.0.1
remark-gfm: 4.0.0
remark-mdc: 3.5.1
+ remark-mdc: 3.5.1
remark-parse: 11.0.0
remark-rehype: 11.1.1
scule: 1.3.0
shiki: 1.24.4
+ shiki: 1.24.4
ufo: 1.5.4
unified: 11.0.5
unist-builder: 4.0.0
@@ -10300,101 +11281,131 @@ snapshots:
dependencies:
'@opentelemetry/api': 1.9.0
+ '@opentelemetry/api-logs@0.56.0':
'@opentelemetry/api-logs@0.56.0':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/api@1.9.0': {}
+ '@opentelemetry/context-async-hooks@1.30.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/context-async-hooks@1.30.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
+ '@opentelemetry/core@1.29.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/core@1.29.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/semantic-conventions': 1.28.0
+ '@opentelemetry/semantic-conventions': 1.28.0
+ '@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/semantic-conventions': 1.28.0
+ '@opentelemetry/instrumentation-amqplib@0.45.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-amqplib@0.45.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-connect@0.42.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-connect@0.42.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
'@types/connect': 3.4.36
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-dataloader@0.15.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-dataloader@0.15.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-express@0.46.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-express@0.46.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-fastify@0.43.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-fastify@0.43.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-fs@0.18.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-fs@0.18.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-generic-pool@0.42.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-generic-pool@0.42.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-graphql@0.46.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-graphql@0.46.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-hapi@0.44.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-hapi@0.44.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-http@0.56.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-http@0.56.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -10402,129 +11413,166 @@ snapshots:
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
forwarded-parse: 2.1.2
+ '@opentelemetry/core': 1.29.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.28.0
+ forwarded-parse: 2.1.2
semver: 7.6.3
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-ioredis@0.46.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-ioredis@0.46.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/redis-common': 0.36.2
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-kafkajs@0.6.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-kafkajs@0.6.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-knex@0.43.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-knex@0.43.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-koa@0.46.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-koa@0.46.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-lru-memoizer@0.43.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-lru-memoizer@0.43.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-mongodb@0.50.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-mongodb@0.50.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-mongoose@0.45.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-mongoose@0.45.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-mysql2@0.44.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-mysql2@0.44.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
'@opentelemetry/sql-common': 0.40.1(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-mysql@0.44.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-mysql@0.44.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
'@types/mysql': 2.15.26
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-nestjs-core@0.43.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-nestjs-core@0.43.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-pg@0.49.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-pg@0.49.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.27.0
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/semantic-conventions': 1.27.0
'@opentelemetry/sql-common': 0.40.1(@opentelemetry/api@1.9.0)
'@types/pg': 8.6.1
'@types/pg-pool': 2.0.6
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-redis-4@0.45.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-redis-4@0.45.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/redis-common': 0.36.2
'@opentelemetry/semantic-conventions': 1.28.0
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-tedious@0.17.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-tedious@0.17.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
'@types/tedious': 4.0.14
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation-undici@0.9.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation-undici@0.9.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -10534,18 +11582,22 @@ snapshots:
'@opentelemetry/api-logs': 0.53.0
'@types/shimmer': 1.2.0
import-in-the-middle: 1.12.0
+ import-in-the-middle: 1.12.0
require-in-the-middle: 7.4.0
semver: 7.6.3
shimmer: 1.2.1
transitivePeerDependencies:
- supports-color
+ '@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/api-logs': 0.56.0
+ '@opentelemetry/api-logs': 0.56.0
'@types/shimmer': 1.2.0
import-in-the-middle: 1.12.0
+ import-in-the-middle: 1.12.0
require-in-the-middle: 7.4.0
semver: 7.6.3
shimmer: 1.2.1
@@ -10554,17 +11606,22 @@ snapshots:
'@opentelemetry/redis-common@0.36.2': {}
+ '@opentelemetry/resources@1.30.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/resources@1.30.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
+ '@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0)':
'@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/resources': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
'@opentelemetry/semantic-conventions@1.27.0': {}
@@ -10575,6 +11632,7 @@ snapshots:
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@oxc-parser/wasm@0.1.0': {}
@@ -10652,36 +11710,54 @@ snapshots:
'@popperjs/core@2.11.8': {}
+ '@prisma/client@6.1.0(prisma@6.1.0)':
'@prisma/client@6.1.0(prisma@6.1.0)':
optionalDependencies:
prisma: 6.1.0
+ prisma: 6.1.0
'@prisma/debug@6.1.0': {}
+ '@prisma/debug@6.1.0': {}
+ '@prisma/engines-version@6.1.0-21.11f085a2012c0f4778414c8db2651556ee0ef959': {}
'@prisma/engines-version@6.1.0-21.11f085a2012c0f4778414c8db2651556ee0ef959': {}
+ '@prisma/engines@6.1.0':
'@prisma/engines@6.1.0':
dependencies:
'@prisma/debug': 6.1.0
'@prisma/engines-version': 6.1.0-21.11f085a2012c0f4778414c8db2651556ee0ef959
'@prisma/fetch-engine': 6.1.0
'@prisma/get-platform': 6.1.0
+ '@prisma/debug': 6.1.0
+ '@prisma/engines-version': 6.1.0-21.11f085a2012c0f4778414c8db2651556ee0ef959
+ '@prisma/fetch-engine': 6.1.0
+ '@prisma/get-platform': 6.1.0
+ '@prisma/fetch-engine@6.1.0':
'@prisma/fetch-engine@6.1.0':
dependencies:
'@prisma/debug': 6.1.0
'@prisma/engines-version': 6.1.0-21.11f085a2012c0f4778414c8db2651556ee0ef959
'@prisma/get-platform': 6.1.0
+ '@prisma/debug': 6.1.0
+ '@prisma/engines-version': 6.1.0-21.11f085a2012c0f4778414c8db2651556ee0ef959
+ '@prisma/get-platform': 6.1.0
+ '@prisma/get-platform@6.1.0':
'@prisma/get-platform@6.1.0':
dependencies:
'@prisma/debug': 6.1.0
+ '@prisma/debug': 6.1.0
+ '@prisma/instrumentation@5.22.0':
'@prisma/instrumentation@5.22.0':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-base': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.53.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.30.0(@opentelemetry/api@1.9.0)
transitivePeerDependencies:
- supports-color
@@ -10698,12 +11774,14 @@ snapshots:
'@redocly/config@0.17.1': {}
+ '@redocly/openapi-core@1.26.1(supports-color@9.4.0)':
'@redocly/openapi-core@1.26.1(supports-color@9.4.0)':
dependencies:
'@redocly/ajv': 8.11.2
'@redocly/config': 0.17.1
colorette: 1.4.0
https-proxy-agent: 7.0.6(supports-color@9.4.0)
+ https-proxy-agent: 7.0.6(supports-color@9.4.0)
js-levenshtein: 1.1.6
js-yaml: 4.1.0
minimatch: 5.1.6
@@ -10714,9 +11792,11 @@ snapshots:
- encoding
- supports-color
+ '@rollup/plugin-alias@5.1.1(rollup@4.29.1)':
'@rollup/plugin-alias@5.1.1(rollup@4.29.1)':
optionalDependencies:
rollup: 4.29.1
+ rollup: 4.29.1
'@rollup/plugin-babel@5.3.1(@babel/core@7.26.0)(rollup@2.79.2)':
dependencies:
@@ -10727,51 +11807,69 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@rollup/plugin-commonjs@28.0.2(rollup@4.29.1)':
'@rollup/plugin-commonjs@28.0.2(rollup@4.29.1)':
dependencies:
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
commondir: 1.0.1
estree-walker: 2.0.2
fdir: 6.4.2(picomatch@4.0.2)
is-reference: 1.2.1
magic-string: 0.30.17
+ magic-string: 0.30.17
picomatch: 4.0.2
optionalDependencies:
rollup: 4.29.1
+ rollup: 4.29.1
+ '@rollup/plugin-inject@5.0.5(rollup@4.29.1)':
'@rollup/plugin-inject@5.0.5(rollup@4.29.1)':
dependencies:
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
estree-walker: 2.0.2
magic-string: 0.30.17
+ magic-string: 0.30.17
optionalDependencies:
rollup: 4.29.1
+ rollup: 4.29.1
+ '@rollup/plugin-json@6.1.0(rollup@4.29.1)':
'@rollup/plugin-json@6.1.0(rollup@4.29.1)':
dependencies:
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
optionalDependencies:
rollup: 4.29.1
+ rollup: 4.29.1
+ '@rollup/plugin-node-resolve@15.3.1(rollup@2.79.2)':
'@rollup/plugin-node-resolve@15.3.1(rollup@2.79.2)':
dependencies:
+ '@rollup/pluginutils': 5.1.4(rollup@2.79.2)
'@rollup/pluginutils': 5.1.4(rollup@2.79.2)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.10
+ resolve: 1.22.10
optionalDependencies:
rollup: 2.79.2
+ '@rollup/plugin-node-resolve@15.3.1(rollup@4.29.1)':
'@rollup/plugin-node-resolve@15.3.1(rollup@4.29.1)':
dependencies:
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
'@types/resolve': 1.20.2
deepmerge: 4.3.1
is-module: 1.0.0
resolve: 1.22.10
+ resolve: 1.22.10
optionalDependencies:
rollup: 4.29.1
+ rollup: 4.29.1
'@rollup/plugin-replace@2.4.2(rollup@2.79.2)':
dependencies:
@@ -10779,34 +11877,45 @@ snapshots:
magic-string: 0.25.9
rollup: 2.79.2
+ '@rollup/plugin-replace@6.0.2(rollup@4.29.1)':
'@rollup/plugin-replace@6.0.2(rollup@4.29.1)':
dependencies:
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
magic-string: 0.30.17
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
+ magic-string: 0.30.17
optionalDependencies:
rollup: 4.29.1
+ rollup: 4.29.1
'@rollup/plugin-terser@0.4.4(rollup@2.79.2)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
terser: 5.37.0
+ terser: 5.37.0
optionalDependencies:
rollup: 2.79.2
+ '@rollup/plugin-terser@0.4.4(rollup@4.29.1)':
'@rollup/plugin-terser@0.4.4(rollup@4.29.1)':
dependencies:
serialize-javascript: 6.0.2
smob: 1.5.0
terser: 5.37.0
+ terser: 5.37.0
optionalDependencies:
rollup: 4.29.1
+ rollup: 4.29.1
+ '@rollup/plugin-wasm@6.2.2(rollup@4.29.1)':
'@rollup/plugin-wasm@6.2.2(rollup@4.29.1)':
dependencies:
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
optionalDependencies:
rollup: 4.29.1
+ rollup: 4.29.1
'@rollup/pluginutils@3.1.0(rollup@2.79.2)':
dependencies:
@@ -10815,6 +11924,7 @@ snapshots:
picomatch: 2.3.1
rollup: 2.79.2
+ '@rollup/pluginutils@5.1.4(rollup@2.79.2)':
'@rollup/pluginutils@5.1.4(rollup@2.79.2)':
dependencies:
'@types/estree': 1.0.6
@@ -10823,6 +11933,7 @@ snapshots:
optionalDependencies:
rollup: 2.79.2
+ '@rollup/pluginutils@5.1.4(rollup@4.29.1)':
'@rollup/pluginutils@5.1.4(rollup@4.29.1)':
dependencies:
'@types/estree': 1.0.6
@@ -10830,81 +11941,113 @@ snapshots:
picomatch: 4.0.2
optionalDependencies:
rollup: 4.29.1
+ rollup: 4.29.1
+ '@rollup/rollup-android-arm-eabi@4.29.1':
'@rollup/rollup-android-arm-eabi@4.29.1':
optional: true
+ '@rollup/rollup-android-arm64@4.29.1':
'@rollup/rollup-android-arm64@4.29.1':
optional: true
+ '@rollup/rollup-darwin-arm64@4.29.1':
'@rollup/rollup-darwin-arm64@4.29.1':
optional: true
+ '@rollup/rollup-darwin-x64@4.29.1':
'@rollup/rollup-darwin-x64@4.29.1':
optional: true
+ '@rollup/rollup-freebsd-arm64@4.29.1':
'@rollup/rollup-freebsd-arm64@4.29.1':
optional: true
+ '@rollup/rollup-freebsd-x64@4.29.1':
'@rollup/rollup-freebsd-x64@4.29.1':
optional: true
+ '@rollup/rollup-linux-arm-gnueabihf@4.29.1':
'@rollup/rollup-linux-arm-gnueabihf@4.29.1':
optional: true
+ '@rollup/rollup-linux-arm-musleabihf@4.29.1':
'@rollup/rollup-linux-arm-musleabihf@4.29.1':
optional: true
+ '@rollup/rollup-linux-arm64-gnu@4.29.1':
'@rollup/rollup-linux-arm64-gnu@4.29.1':
optional: true
+ '@rollup/rollup-linux-arm64-musl@4.29.1':
'@rollup/rollup-linux-arm64-musl@4.29.1':
optional: true
+ '@rollup/rollup-linux-loongarch64-gnu@4.29.1':
'@rollup/rollup-linux-loongarch64-gnu@4.29.1':
optional: true
+ '@rollup/rollup-linux-powerpc64le-gnu@4.29.1':
'@rollup/rollup-linux-powerpc64le-gnu@4.29.1':
optional: true
+ '@rollup/rollup-linux-riscv64-gnu@4.29.1':
'@rollup/rollup-linux-riscv64-gnu@4.29.1':
optional: true
+ '@rollup/rollup-linux-s390x-gnu@4.29.1':
'@rollup/rollup-linux-s390x-gnu@4.29.1':
optional: true
+ '@rollup/rollup-linux-x64-gnu@4.29.1':
'@rollup/rollup-linux-x64-gnu@4.29.1':
optional: true
+ '@rollup/rollup-linux-x64-musl@4.29.1':
'@rollup/rollup-linux-x64-musl@4.29.1':
optional: true
+ '@rollup/rollup-win32-arm64-msvc@4.29.1':
'@rollup/rollup-win32-arm64-msvc@4.29.1':
optional: true
+ '@rollup/rollup-win32-ia32-msvc@4.29.1':
'@rollup/rollup-win32-ia32-msvc@4.29.1':
optional: true
'@rollup/rollup-win32-x64-msvc@4.29.1':
optional: true
+ '@sentry-internal/browser-utils@8.47.0':
+ '@rollup/rollup-win32-x64-msvc@4.29.1':
+ optional: true
+
'@sentry-internal/browser-utils@8.47.0':
dependencies:
'@sentry/core': 8.47.0
+ '@sentry/core': 8.47.0
+ '@sentry-internal/feedback@8.47.0':
'@sentry-internal/feedback@8.47.0':
dependencies:
'@sentry/core': 8.47.0
+ '@sentry/core': 8.47.0
+ '@sentry-internal/replay-canvas@8.47.0':
'@sentry-internal/replay-canvas@8.47.0':
dependencies:
'@sentry-internal/replay': 8.47.0
'@sentry/core': 8.47.0
+ '@sentry-internal/replay': 8.47.0
+ '@sentry/core': 8.47.0
+ '@sentry-internal/replay@8.47.0':
'@sentry-internal/replay@8.47.0':
dependencies:
'@sentry-internal/browser-utils': 8.47.0
'@sentry/core': 8.47.0
+ '@sentry-internal/browser-utils': 8.47.0
+ '@sentry/core': 8.47.0
'@sentry-internal/tracing@7.114.0':
dependencies:
@@ -10916,6 +12059,9 @@ snapshots:
'@sentry/babel-plugin-component-annotate@2.22.7': {}
+ '@sentry/browser@8.47.0':
+ '@sentry/babel-plugin-component-annotate@2.22.7': {}
+
'@sentry/browser@8.47.0':
dependencies:
'@sentry-internal/browser-utils': 8.47.0
@@ -10923,6 +12069,11 @@ snapshots:
'@sentry-internal/replay': 8.47.0
'@sentry-internal/replay-canvas': 8.47.0
'@sentry/core': 8.47.0
+ '@sentry-internal/browser-utils': 8.47.0
+ '@sentry-internal/feedback': 8.47.0
+ '@sentry-internal/replay': 8.47.0
+ '@sentry-internal/replay-canvas': 8.47.0
+ '@sentry/core': 8.47.0
'@sentry/bundler-plugin-core@2.22.6':
dependencies:
@@ -10952,6 +12103,20 @@ snapshots:
- encoding
- supports-color
+ '@sentry/bundler-plugin-core@2.22.7':
+ dependencies:
+ '@babel/core': 7.26.0
+ '@sentry/babel-plugin-component-annotate': 2.22.7
+ '@sentry/cli': 2.39.1
+ dotenv: 16.4.7
+ find-up: 5.0.0
+ glob: 9.3.5
+ magic-string: 0.30.8
+ unplugin: 1.0.1
+ transitivePeerDependencies:
+ - encoding
+ - supports-color
+
'@sentry/cli-darwin@2.39.1':
optional: true
@@ -10998,6 +12163,7 @@ snapshots:
'@sentry/utils': 7.114.0
'@sentry/core@8.47.0': {}
+ '@sentry/core@8.47.0': {}
'@sentry/integrations@7.114.0':
dependencies:
@@ -11014,6 +12180,7 @@ snapshots:
'@sentry/types': 7.114.0
'@sentry/utils': 7.114.0
+ '@sentry/node@8.47.0':
'@sentry/node@8.47.0':
dependencies:
'@opentelemetry/api': 1.9.0
@@ -11046,16 +12213,55 @@ snapshots:
'@opentelemetry/instrumentation-undici': 0.9.0(@opentelemetry/api@1.9.0)
'@opentelemetry/resources': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-base': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/context-async-hooks': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-amqplib': 0.45.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-connect': 0.42.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-dataloader': 0.15.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-express': 0.46.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-fastify': 0.43.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-fs': 0.18.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-generic-pool': 0.42.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-graphql': 0.46.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-hapi': 0.44.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-http': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-ioredis': 0.46.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-kafkajs': 0.6.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-knex': 0.43.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-koa': 0.46.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-lru-memoizer': 0.43.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-mongodb': 0.50.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-mongoose': 0.45.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-mysql': 0.44.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-mysql2': 0.44.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-nestjs-core': 0.43.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-pg': 0.49.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-redis-4': 0.45.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-tedious': 0.17.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation-undici': 0.9.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/resources': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
'@prisma/instrumentation': 5.22.0
'@sentry/core': 8.47.0
'@sentry/opentelemetry': 8.47.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)
import-in-the-middle: 1.12.0
+ '@prisma/instrumentation': 5.22.0
+ '@sentry/core': 8.47.0
+ '@sentry/opentelemetry': 8.47.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)
+ import-in-the-middle: 1.12.0
transitivePeerDependencies:
- supports-color
- '@sentry/nuxt@8.47.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)(magicast@0.3.5)(nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1))(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))':
+ '@sentry/nuxt@8.47.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)(magicast@0.3.5)(nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(aws4fetch@1.0.20)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1))(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))':
dependencies:
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
+ '@sentry/browser': 8.47.0
+ '@sentry/core': 8.47.0
+ '@sentry/node': 8.47.0
+ '@sentry/opentelemetry': 8.47.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)
+ '@sentry/rollup-plugin': 2.22.7(rollup@4.29.1)
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@sentry/browser': 8.47.0
'@sentry/core': 8.47.0
@@ -11064,7 +12270,7 @@ snapshots:
'@sentry/rollup-plugin': 2.22.7(rollup@4.29.1)
'@sentry/vite-plugin': 2.22.6
'@sentry/vue': 8.47.0(vue@3.5.13(typescript@5.7.2))
- nuxt: 3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1)
+ nuxt: 3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(aws4fetch@1.0.20)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1)
transitivePeerDependencies:
- '@opentelemetry/api'
- '@opentelemetry/core'
@@ -11078,17 +12284,25 @@ snapshots:
- supports-color
- vue
+ '@sentry/opentelemetry@8.47.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)':
'@sentry/opentelemetry@8.47.0(@opentelemetry/api@1.9.0)(@opentelemetry/core@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/instrumentation@0.56.0(@opentelemetry/api@1.9.0))(@opentelemetry/sdk-trace-base@1.30.0(@opentelemetry/api@1.9.0))(@opentelemetry/semantic-conventions@1.28.0)':
dependencies:
'@opentelemetry/api': 1.9.0
'@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
'@opentelemetry/sdk-trace-base': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/core': 1.30.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/instrumentation': 0.56.0(@opentelemetry/api@1.9.0)
+ '@opentelemetry/sdk-trace-base': 1.30.0(@opentelemetry/api@1.9.0)
'@opentelemetry/semantic-conventions': 1.28.0
'@sentry/core': 8.47.0
+ '@sentry/core': 8.47.0
+ '@sentry/rollup-plugin@2.22.7(rollup@4.29.1)':
'@sentry/rollup-plugin@2.22.7(rollup@4.29.1)':
dependencies:
+ '@sentry/bundler-plugin-core': 2.22.7
+ rollup: 4.29.1
'@sentry/bundler-plugin-core': 2.22.7
rollup: 4.29.1
unplugin: 1.0.1
@@ -11119,42 +12333,63 @@ snapshots:
- encoding
- supports-color
+ '@sentry/vue@8.47.0(vue@3.5.13(typescript@5.7.2))':
'@sentry/vue@8.47.0(vue@3.5.13(typescript@5.7.2))':
dependencies:
+ '@sentry/browser': 8.47.0
+ '@sentry/core': 8.47.0
'@sentry/browser': 8.47.0
'@sentry/core': 8.47.0
vue: 3.5.13(typescript@5.7.2)
+ '@shikijs/core@1.24.4':
'@shikijs/core@1.24.4':
dependencies:
+ '@shikijs/engine-javascript': 1.24.4
+ '@shikijs/engine-oniguruma': 1.24.4
+ '@shikijs/types': 1.24.4
+ '@shikijs/vscode-textmate': 9.3.1
'@shikijs/engine-javascript': 1.24.4
'@shikijs/engine-oniguruma': 1.24.4
'@shikijs/types': 1.24.4
'@shikijs/vscode-textmate': 9.3.1
'@types/hast': 3.0.4
hast-util-to-html: 9.0.4
+ hast-util-to-html: 9.0.4
+ '@shikijs/engine-javascript@1.24.4':
'@shikijs/engine-javascript@1.24.4':
dependencies:
'@shikijs/types': 1.24.4
'@shikijs/vscode-textmate': 9.3.1
oniguruma-to-es: 0.8.1
+ '@shikijs/types': 1.24.4
+ '@shikijs/vscode-textmate': 9.3.1
+ oniguruma-to-es: 0.8.1
+ '@shikijs/engine-oniguruma@1.24.4':
'@shikijs/engine-oniguruma@1.24.4':
dependencies:
'@shikijs/types': 1.24.4
'@shikijs/vscode-textmate': 9.3.1
+ '@shikijs/types': 1.24.4
+ '@shikijs/vscode-textmate': 9.3.1
+ '@shikijs/transformers@1.24.4':
'@shikijs/transformers@1.24.4':
dependencies:
shiki: 1.24.4
+ shiki: 1.24.4
+ '@shikijs/types@1.24.4':
'@shikijs/types@1.24.4':
dependencies:
+ '@shikijs/vscode-textmate': 9.3.1
'@shikijs/vscode-textmate': 9.3.1
'@types/hast': 3.0.4
'@shikijs/vscode-textmate@9.3.1': {}
+ '@shikijs/vscode-textmate@9.3.1': {}
'@sindresorhus/is@4.6.0': {}
@@ -11162,8 +12397,11 @@ snapshots:
'@socket.io/component-emitter@3.1.2': {}
+ '@stylistic/eslint-plugin@2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
'@stylistic/eslint-plugin@2.12.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
+ '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ eslint: 9.17.0(jiti@2.4.2)
'@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
eslint: 9.17.0(jiti@2.4.2)
eslint-visitor-keys: 4.2.0
@@ -11180,15 +12418,19 @@ snapshots:
json5: 2.2.3
magic-string: 0.25.9
string.prototype.matchall: 4.0.12
+ string.prototype.matchall: 4.0.12
'@swc/helpers@0.5.15':
dependencies:
tslib: 2.8.1
+ '@tanstack/eslint-plugin-query@5.62.9(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
'@tanstack/eslint-plugin-query@5.62.9(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
'@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
eslint: 9.17.0(jiti@2.4.2)
+ '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ eslint: 9.17.0(jiti@2.4.2)
transitivePeerDependencies:
- supports-color
- typescript
@@ -11198,15 +12440,19 @@ snapshots:
remove-accents: 0.5.0
'@tanstack/query-core@5.62.9': {}
+ '@tanstack/query-core@5.62.9': {}
'@tanstack/table-core@8.20.5': {}
+ '@tanstack/virtual-core@3.11.2': {}
'@tanstack/virtual-core@3.11.2': {}
+ '@tanstack/vue-query@5.62.9(vue@3.5.13(typescript@5.7.2))':
'@tanstack/vue-query@5.62.9(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@tanstack/match-sorter-utils': 8.19.4
'@tanstack/query-core': 5.62.9
+ '@tanstack/query-core': 5.62.9
'@vue/devtools-api': 6.6.4
vue: 3.5.13(typescript@5.7.2)
vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2))
@@ -11216,8 +12462,10 @@ snapshots:
'@tanstack/table-core': 8.20.5
vue: 3.5.13(typescript@5.7.2)
+ '@tanstack/vue-virtual@3.11.2(vue@3.5.13(typescript@5.7.2))':
'@tanstack/vue-virtual@3.11.2(vue@3.5.13(typescript@5.7.2))':
dependencies:
+ '@tanstack/virtual-core': 3.11.2
'@tanstack/virtual-core': 3.11.2
vue: 3.5.13(typescript@5.7.2)
@@ -11229,14 +12477,17 @@ snapshots:
dependencies:
'@types/connect': 3.4.38
'@types/node': 22.10.2
+ '@types/node': 22.10.2
'@types/connect@3.4.36':
dependencies:
'@types/node': 22.10.2
+ '@types/node': 22.10.2
'@types/connect@3.4.38':
dependencies:
'@types/node': 22.10.2
+ '@types/node': 22.10.2
'@types/d3-array@3.2.1': {}
@@ -11258,6 +12509,7 @@ snapshots:
dependencies:
'@types/d3-array': 3.2.1
'@types/geojson': 7946.0.15
+ '@types/geojson': 7946.0.15
'@types/d3-delaunay@6.0.4': {}
@@ -11282,6 +12534,7 @@ snapshots:
'@types/d3-geo@3.1.0':
dependencies:
'@types/geojson': 7946.0.15
+ '@types/geojson': 7946.0.15
'@types/d3-hierarchy@3.1.7': {}
@@ -11375,6 +12628,8 @@ snapshots:
'@types/doctrine@0.0.9': {}
+ '@types/doctrine@0.0.9': {}
+
'@types/eslint-scope@3.7.7':
dependencies:
'@types/eslint': 9.6.1
@@ -11391,6 +12646,7 @@ snapshots:
'@types/express-serve-static-core@4.19.6':
dependencies:
+ '@types/node': 22.10.2
'@types/node': 22.10.2
'@types/qs': 6.9.17
'@types/range-parser': 1.2.7
@@ -11404,6 +12660,7 @@ snapshots:
'@types/serve-static': 1.15.7
'@types/geojson@7946.0.15': {}
+ '@types/geojson@7946.0.15': {}
'@types/hast@3.0.4':
dependencies:
@@ -11414,12 +12671,14 @@ snapshots:
'@types/http-proxy@1.17.15':
dependencies:
'@types/node': 22.10.2
+ '@types/node': 22.10.2
'@types/json-schema@7.0.15': {}
'@types/leaflet@1.7.6':
dependencies:
'@types/geojson': 7946.0.15
+ '@types/geojson': 7946.0.15
'@types/lodash@4.17.13': {}
@@ -11427,6 +12686,7 @@ snapshots:
'@types/mapbox__vector-tile@1.3.4':
dependencies:
+ '@types/geojson': 7946.0.15
'@types/geojson': 7946.0.15
'@types/mapbox__point-geometry': 0.1.4
'@types/pbf': 3.0.5
@@ -11442,14 +12702,17 @@ snapshots:
'@types/mysql@2.15.26':
dependencies:
'@types/node': 22.10.2
+ '@types/node': 22.10.2
'@types/node-fetch@2.6.12':
dependencies:
+ '@types/node': 22.10.2
'@types/node': 22.10.2
form-data: 4.0.1
'@types/node@12.20.55': {}
+ '@types/node@22.10.2':
'@types/node@22.10.2':
dependencies:
undici-types: 6.20.0
@@ -11460,6 +12723,8 @@ snapshots:
'@types/parse-path@7.0.3': {}
+ '@types/parse-path@7.0.3': {}
+
'@types/pbf@3.0.5': {}
'@types/pg-pool@2.0.6':
@@ -11468,6 +12733,7 @@ snapshots:
'@types/pg@8.6.1':
dependencies:
+ '@types/node': 22.10.2
'@types/node': 22.10.2
pg-protocol: 1.7.0
pg-types: 2.2.0
@@ -11488,11 +12754,13 @@ snapshots:
dependencies:
'@types/mime': 1.3.5
'@types/node': 22.10.2
+ '@types/node': 22.10.2
'@types/serve-static@1.15.7':
dependencies:
'@types/http-errors': 2.0.4
'@types/node': 22.10.2
+ '@types/node': 22.10.2
'@types/send': 0.17.4
'@types/shimmer@1.2.0': {}
@@ -11500,10 +12768,12 @@ snapshots:
'@types/supercluster@5.0.3':
dependencies:
'@types/geojson': 7946.0.15
+ '@types/geojson': 7946.0.15
'@types/tedious@4.0.14':
dependencies:
'@types/node': 22.10.2
+ '@types/node': 22.10.2
'@types/three@0.135.0': {}
@@ -11511,25 +12781,30 @@ snapshots:
'@types/topojson-client@3.1.5':
dependencies:
+ '@types/geojson': 7946.0.15
'@types/geojson': 7946.0.15
'@types/topojson-specification': 1.0.5
'@types/topojson-server@3.0.4':
dependencies:
+ '@types/geojson': 7946.0.15
'@types/geojson': 7946.0.15
'@types/topojson-specification': 1.0.5
'@types/topojson-simplify@3.0.3':
dependencies:
+ '@types/geojson': 7946.0.15
'@types/geojson': 7946.0.15
'@types/topojson-specification': 1.0.5
'@types/topojson-specification@1.0.5':
dependencies:
'@types/geojson': 7946.0.15
+ '@types/geojson': 7946.0.15
'@types/topojson@3.2.6':
dependencies:
+ '@types/geojson': 7946.0.15
'@types/geojson': 7946.0.15
'@types/topojson-client': 3.1.5
'@types/topojson-server': 3.0.4
@@ -11549,7 +12824,9 @@ snapshots:
'@types/ws@8.5.13':
dependencies:
'@types/node': 22.10.2
+ '@types/node': 22.10.2
+ '@typescript-eslint/eslint-plugin@8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
'@typescript-eslint/eslint-plugin@8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
'@eslint-community/regexpp': 4.12.1
@@ -11559,6 +12836,12 @@ snapshots:
'@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
'@typescript-eslint/visitor-keys': 8.18.2
eslint: 9.17.0(jiti@2.4.2)
+ '@typescript-eslint/parser': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ '@typescript-eslint/scope-manager': 8.18.2
+ '@typescript-eslint/type-utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 8.18.2
+ eslint: 9.17.0(jiti@2.4.2)
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
@@ -11567,8 +12850,15 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
'@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
+ '@typescript-eslint/scope-manager': 8.18.2
+ '@typescript-eslint/types': 8.18.2
+ '@typescript-eslint/typescript-estree': 8.18.2(typescript@5.7.2)
+ '@typescript-eslint/visitor-keys': 8.18.2
+ debug: 4.4.0(supports-color@9.4.0)
+ eslint: 9.17.0(jiti@2.4.2)
'@typescript-eslint/scope-manager': 8.18.2
'@typescript-eslint/types': 8.18.2
'@typescript-eslint/typescript-estree': 8.18.2(typescript@5.7.2)
@@ -11579,13 +12869,21 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/scope-manager@8.18.2':
'@typescript-eslint/scope-manager@8.18.2':
dependencies:
'@typescript-eslint/types': 8.18.2
'@typescript-eslint/visitor-keys': 8.18.2
+ '@typescript-eslint/types': 8.18.2
+ '@typescript-eslint/visitor-keys': 8.18.2
+ '@typescript-eslint/type-utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
'@typescript-eslint/type-utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
+ '@typescript-eslint/typescript-estree': 8.18.2(typescript@5.7.2)
+ '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ debug: 4.4.0(supports-color@9.4.0)
+ eslint: 9.17.0(jiti@2.4.2)
'@typescript-eslint/typescript-estree': 8.18.2(typescript@5.7.2)
'@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
debug: 4.4.0(supports-color@9.4.0)
@@ -11596,9 +12894,14 @@ snapshots:
- supports-color
'@typescript-eslint/types@8.18.2': {}
+ '@typescript-eslint/types@8.18.2': {}
+ '@typescript-eslint/typescript-estree@8.18.2(typescript@5.7.2)':
'@typescript-eslint/typescript-estree@8.18.2(typescript@5.7.2)':
dependencies:
+ '@typescript-eslint/types': 8.18.2
+ '@typescript-eslint/visitor-keys': 8.18.2
+ debug: 4.4.0(supports-color@9.4.0)
'@typescript-eslint/types': 8.18.2
'@typescript-eslint/visitor-keys': 8.18.2
debug: 4.4.0(supports-color@9.4.0)
@@ -11611,8 +12914,14 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
'@typescript-eslint/utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ '@typescript-eslint/scope-manager': 8.18.2
+ '@typescript-eslint/types': 8.18.2
+ '@typescript-eslint/typescript-estree': 8.18.2(typescript@5.7.2)
+ eslint: 9.17.0(jiti@2.4.2)
'@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
'@typescript-eslint/scope-manager': 8.18.2
'@typescript-eslint/types': 8.18.2
@@ -11622,64 +12931,85 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@typescript-eslint/visitor-keys@8.18.2':
'@typescript-eslint/visitor-keys@8.18.2':
dependencies:
+ '@typescript-eslint/types': 8.18.2
'@typescript-eslint/types': 8.18.2
eslint-visitor-keys: 4.2.0
'@ungap/structured-clone@1.2.1': {}
+ '@ungap/structured-clone@1.2.1': {}
+ '@unhead/dom@1.11.14':
'@unhead/dom@1.11.14':
dependencies:
'@unhead/schema': 1.11.14
'@unhead/shared': 1.11.14
+ '@unhead/schema': 1.11.14
+ '@unhead/shared': 1.11.14
+ '@unhead/schema@1.11.14':
'@unhead/schema@1.11.14':
dependencies:
hookable: 5.5.3
zhead: 2.2.4
+ '@unhead/shared@1.11.14':
'@unhead/shared@1.11.14':
dependencies:
'@unhead/schema': 1.11.14
+ '@unhead/schema': 1.11.14
+ '@unhead/ssr@1.11.14':
'@unhead/ssr@1.11.14':
dependencies:
'@unhead/schema': 1.11.14
'@unhead/shared': 1.11.14
+ '@unhead/schema': 1.11.14
+ '@unhead/shared': 1.11.14
+ '@unhead/vue@1.11.14(vue@3.5.13(typescript@5.7.2))':
'@unhead/vue@1.11.14(vue@3.5.13(typescript@5.7.2))':
dependencies:
+ '@unhead/schema': 1.11.14
+ '@unhead/shared': 1.11.14
'@unhead/schema': 1.11.14
'@unhead/shared': 1.11.14
defu: 6.1.4
hookable: 5.5.3
unhead: 1.11.14
+ unhead: 1.11.14
vue: 3.5.13(typescript@5.7.2)
+ '@unocss/astro@0.65.1(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
'@unocss/astro@0.65.1(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@unocss/core': 0.65.1
'@unocss/reset': 0.65.1
'@unocss/vite': 0.65.1(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ '@unocss/vite': 0.65.1(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
optionalDependencies:
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
+ vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
transitivePeerDependencies:
- rollup
- supports-color
- vue
+ '@unocss/cli@0.65.1(rollup@4.29.1)':
'@unocss/cli@0.65.1(rollup@4.29.1)':
dependencies:
'@ampproject/remapping': 2.3.0
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
'@unocss/config': 0.65.1
'@unocss/core': 0.65.1
'@unocss/preset-uno': 0.65.1
cac: 6.7.14
chokidar: 3.6.0
colorette: 2.0.20
- consola: 3.3.3
+ consola: 3.3.2
magic-string: 0.30.17
pathe: 1.1.2
perfect-debounce: 1.0.0
@@ -11702,16 +13032,28 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@unocss/config@0.65.3':
+ dependencies:
+ '@unocss/core': 0.65.3
+ unconfig: 0.6.0
+ transitivePeerDependencies:
+ - supports-color
+
'@unocss/core@0.65.1': {}
'@unocss/core@0.65.3': {}
+ '@unocss/eslint-plugin@0.65.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
+ '@unocss/core@0.65.3': {}
+
'@unocss/eslint-plugin@0.65.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
+ '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
'@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
'@unocss/config': 0.65.1
'@unocss/core': 0.65.1
magic-string: 0.30.17
+ magic-string: 0.30.17
synckit: 0.9.2
transitivePeerDependencies:
- eslint
@@ -11732,8 +13074,9 @@ snapshots:
transitivePeerDependencies:
- vue
- '@unocss/nuxt@0.65.1(magicast@0.3.5)(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))(webpack@5.96.1(esbuild@0.24.2))':
+ '@unocss/nuxt@0.65.1(magicast@0.3.5)(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))(webpack@5.97.1(esbuild@0.24.2))':
dependencies:
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@unocss/config': 0.65.1
'@unocss/core': 0.65.1
@@ -11746,8 +13089,8 @@ snapshots:
'@unocss/preset-wind': 0.65.1
'@unocss/reset': 0.65.1
'@unocss/vite': 0.65.1(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
- '@unocss/webpack': 0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2))
- unocss: 0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ '@unocss/webpack': 0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2))
+ unocss: 0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
transitivePeerDependencies:
- magicast
- postcss
@@ -11768,6 +13111,18 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@unocss/postcss@0.65.3(postcss@8.4.49)':
+ dependencies:
+ '@unocss/config': 0.65.3
+ '@unocss/core': 0.65.3
+ '@unocss/rule-utils': 0.65.3
+ css-tree: 3.1.0
+ css-tree: 3.1.0
+ postcss: 8.4.49
+ tinyglobby: 0.2.10
+ transitivePeerDependencies:
+ - supports-color
+
'@unocss/postcss@0.65.3(postcss@8.4.49)':
dependencies:
'@unocss/config': 0.65.3
@@ -11785,6 +13140,7 @@ snapshots:
'@unocss/preset-icons@0.65.1':
dependencies:
+ '@iconify/utils': 2.2.1
'@iconify/utils': 2.2.1
'@unocss/core': 0.65.1
ofetch: 1.4.1
@@ -11831,6 +13187,12 @@ snapshots:
'@unocss/core': 0.65.1
magic-string: 0.30.17
+ '@unocss/rule-utils@0.65.3':
+ dependencies:
+ '@unocss/core': 0.65.3
+ magic-string: 0.30.17
+ magic-string: 0.30.17
+
'@unocss/rule-utils@0.65.3':
dependencies:
'@unocss/core': 0.65.3
@@ -11849,38 +13211,45 @@ snapshots:
'@unocss/core': 0.65.1
'@unocss/rule-utils': 0.65.1
css-tree: 3.1.0
+ css-tree: 3.1.0
'@unocss/transformer-variant-group@0.65.1':
dependencies:
'@unocss/core': 0.65.1
+ '@unocss/vite@0.65.1(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
'@unocss/vite@0.65.1(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@ampproject/remapping': 2.3.0
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
'@unocss/config': 0.65.1
'@unocss/core': 0.65.1
'@unocss/inspector': 0.65.1(vue@3.5.13(typescript@5.7.2))
chokidar: 3.6.0
magic-string: 0.30.17
+ magic-string: 0.30.17
tinyglobby: 0.2.10
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
+ vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
transitivePeerDependencies:
- rollup
- supports-color
- vue
- '@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2))':
+ '@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2))':
dependencies:
'@ampproject/remapping': 2.3.0
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
'@unocss/config': 0.65.1
'@unocss/core': 0.65.1
chokidar: 3.6.0
magic-string: 0.30.17
+ magic-string: 0.30.17
tinyglobby: 0.2.10
unplugin: 1.16.0
- webpack: 5.96.1(esbuild@0.24.2)
+ webpack: 5.97.1(esbuild@0.24.2)
webpack-sources: 3.2.3
transitivePeerDependencies:
- rollup
@@ -11895,6 +13264,7 @@ snapshots:
dependencies:
lodash-es: 4.17.21
+ '@unovis/ts@1.5.0':
'@unovis/ts@1.5.0':
dependencies:
'@emotion/css': 11.13.5
@@ -11904,6 +13274,7 @@ snapshots:
'@types/d3-sankey': 0.11.2
'@types/dagre': 0.7.52
'@types/geojson': 7946.0.15
+ '@types/geojson': 7946.0.15
'@types/leaflet': 1.7.6
'@types/supercluster': 5.0.3
'@types/three': 0.135.0
@@ -11932,21 +13303,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ '@unovis/vue@1.5.0(@unovis/ts@1.5.0)(vue@3.5.13(typescript@5.7.2))':
'@unovis/vue@1.5.0(@unovis/ts@1.5.0)(vue@3.5.13(typescript@5.7.2))':
dependencies:
+ '@unovis/ts': 1.5.0
'@unovis/ts': 1.5.0
vue: 3.5.13(typescript@5.7.2)
+ '@vee-validate/zod@4.15.0(vue@3.5.13(typescript@5.7.2))(zod@3.24.1)':
'@vee-validate/zod@4.15.0(vue@3.5.13(typescript@5.7.2))(zod@3.24.1)':
dependencies:
type-fest: 4.31.0
vee-validate: 4.15.0(vue@3.5.13(typescript@5.7.2))
zod: 3.24.1
+ type-fest: 4.31.0
+ vee-validate: 4.15.0(vue@3.5.13(typescript@5.7.2))
+ zod: 3.24.1
transitivePeerDependencies:
- vue
+ '@vercel/nft@0.27.10(rollup@4.29.1)':
'@vercel/nft@0.27.10(rollup@4.29.1)':
dependencies:
+ '@mapbox/node-pre-gyp': 2.0.0-rc.0
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
'@mapbox/node-pre-gyp': 2.0.0-rc.0
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
acorn: 8.14.0
@@ -11958,18 +13338,20 @@ snapshots:
graceful-fs: 4.2.11
node-gyp-build: 4.8.4
picomatch: 4.0.2
+ picomatch: 4.0.2
resolve-from: 5.0.0
transitivePeerDependencies:
- encoding
- rollup
- supports-color
- '@vite-pwa/nuxt@0.10.6(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(workbox-build@7.1.1)(workbox-window@7.1.0)':
+ '@vite-pwa/nuxt@0.10.6(magicast@0.3.5)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(workbox-build@7.3.0)(workbox-window@7.3.0)':
dependencies:
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
pathe: 1.1.2
ufo: 1.5.4
- vite-plugin-pwa: 0.21.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(workbox-build@7.1.1)(workbox-window@7.1.0)
+ vite-plugin-pwa: 0.21.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(workbox-build@7.3.0)(workbox-window@7.3.0)
transitivePeerDependencies:
- magicast
- rollup
@@ -11978,44 +13360,57 @@ snapshots:
- workbox-build
- workbox-window
+ '@vitejs/plugin-vue-jsx@4.1.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
'@vitejs/plugin-vue-jsx@4.1.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@babel/core': 7.26.0
'@babel/plugin-transform-typescript': 7.26.3(@babel/core@7.26.0)
'@vue/babel-plugin-jsx': 1.2.5(@babel/core@7.26.0)
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
+ vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- supports-color
+ '@vitejs/plugin-vue@5.2.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
'@vitejs/plugin-vue@5.2.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
dependencies:
+ vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
vue: 3.5.13(typescript@5.7.2)
- '@vitest/eslint-plugin@1.1.21(@typescript-eslint/utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
+ '@vitest/eslint-plugin@1.1.20(@typescript-eslint/utils@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)':
dependencies:
'@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
eslint: 9.17.0(jiti@2.4.2)
+ '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ eslint: 9.17.0(jiti@2.4.2)
optionalDependencies:
typescript: 5.7.2
+ '@volar/language-core@2.4.11':
'@volar/language-core@2.4.11':
dependencies:
'@volar/source-map': 2.4.11
+ '@volar/source-map': 2.4.11
'@volar/source-map@2.4.11': {}
+ '@volar/source-map@2.4.11': {}
+ '@volar/typescript@2.4.11':
'@volar/typescript@2.4.11':
dependencies:
+ '@volar/language-core': 2.4.11
'@volar/language-core': 2.4.11
path-browserify: 1.0.1
vscode-uri: 3.0.8
+ '@vue-macros/common@1.15.1(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))':
'@vue-macros/common@1.15.1(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))':
dependencies:
'@babel/types': 7.26.3
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
'@vue/compiler-sfc': 3.5.13
ast-kit: 1.3.2
local-pkg: 0.5.1
@@ -12034,6 +13429,7 @@ snapshots:
'@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
'@babel/template': 7.25.9
'@babel/traverse': 7.26.4
+ '@babel/traverse': 7.26.4
'@babel/types': 7.26.3
'@vue/babel-helper-vue-transform-on': 1.2.5
'@vue/babel-plugin-resolve-type': 1.2.5(@babel/core@7.26.0)
@@ -12077,6 +13473,7 @@ snapshots:
'@vue/shared': 3.5.13
estree-walker: 2.0.2
magic-string: 0.30.17
+ magic-string: 0.30.17
postcss: 8.4.49
source-map-js: 1.2.1
@@ -12092,24 +13489,33 @@ snapshots:
'@vue/devtools-api@6.6.4': {}
+ '@vue/devtools-api@7.6.8':
'@vue/devtools-api@7.6.8':
dependencies:
'@vue/devtools-kit': 7.6.8
+ '@vue/devtools-kit': 7.6.8
+ '@vue/devtools-core@7.6.8(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
'@vue/devtools-core@7.6.8(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))':
dependencies:
+ '@vue/devtools-kit': 7.6.8
+ '@vue/devtools-shared': 7.6.8
'@vue/devtools-kit': 7.6.8
'@vue/devtools-shared': 7.6.8
mitt: 3.0.1
nanoid: 5.0.9
+ nanoid: 5.0.9
pathe: 1.1.2
vite-hot-client: 0.2.4(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))
+ vite-hot-client: 0.2.4(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))
vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- vite
+ '@vue/devtools-kit@7.6.8':
'@vue/devtools-kit@7.6.8':
dependencies:
+ '@vue/devtools-shared': 7.6.8
'@vue/devtools-shared': 7.6.8
birpc: 0.2.19
hookable: 5.5.3
@@ -12117,18 +13523,22 @@ snapshots:
perfect-debounce: 1.0.0
speakingurl: 14.0.1
superjson: 2.2.2
+ superjson: 2.2.2
+ '@vue/devtools-shared@7.6.8':
'@vue/devtools-shared@7.6.8':
dependencies:
rfdc: 1.4.1
+ '@vue/language-core@2.2.0(typescript@5.7.2)':
'@vue/language-core@2.2.0(typescript@5.7.2)':
dependencies:
+ '@volar/language-core': 2.4.11
'@volar/language-core': 2.4.11
'@vue/compiler-dom': 3.5.13
'@vue/compiler-vue2': 2.7.16
'@vue/shared': 3.5.13
- alien-signals: 0.4.12
+ alien-signals: 0.4.11
minimatch: 9.0.5
muggle-string: 0.4.1
path-browserify: 1.0.1
@@ -12179,17 +13589,24 @@ snapshots:
- '@vue/composition-api'
- vue
+ '@vueuse/core@12.2.0(typescript@5.7.2)':
'@vueuse/core@12.2.0(typescript@5.7.2)':
dependencies:
'@types/web-bluetooth': 0.0.20
'@vueuse/metadata': 12.2.0
'@vueuse/shared': 12.2.0(typescript@5.7.2)
+ '@vueuse/metadata': 12.2.0
+ '@vueuse/shared': 12.2.0(typescript@5.7.2)
vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- typescript
'@vueuse/head@2.0.0(vue@3.5.13(typescript@5.7.2))':
dependencies:
+ '@unhead/dom': 1.11.14
+ '@unhead/schema': 1.11.14
+ '@unhead/ssr': 1.11.14
+ '@unhead/vue': 1.11.14(vue@3.5.13(typescript@5.7.2))
'@unhead/dom': 1.11.14
'@unhead/schema': 1.11.14
'@unhead/ssr': 1.11.14
@@ -12200,15 +13617,17 @@ snapshots:
'@vueuse/metadata@11.3.0': {}
+ '@vueuse/metadata@12.2.0': {}
'@vueuse/metadata@12.2.0': {}
- '@vueuse/nuxt@11.3.0(magicast@0.3.5)(nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1))(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))':
+ '@vueuse/nuxt@11.3.0(magicast@0.3.5)(nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(aws4fetch@1.0.20)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1))(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))':
dependencies:
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@vueuse/core': 11.3.0(vue@3.5.13(typescript@5.7.2))
'@vueuse/metadata': 11.3.0
local-pkg: 0.5.1
- nuxt: 3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1)
+ nuxt: 3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(aws4fetch@1.0.20)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1)
vue-demi: 0.14.10(vue@3.5.13(typescript@5.7.2))
transitivePeerDependencies:
- '@vue/composition-api'
@@ -12231,6 +13650,7 @@ snapshots:
- '@vue/composition-api'
- vue
+ '@vueuse/shared@12.2.0(typescript@5.7.2)':
'@vueuse/shared@12.2.0(typescript@5.7.2)':
dependencies:
vue: 3.5.13(typescript@5.7.2)
@@ -12317,6 +13737,7 @@ snapshots:
'@xtuc/long@4.2.2': {}
+ abbrev@2.0.0: {}
abbrev@2.0.0: {}
abort-controller@3.0.0:
@@ -12336,11 +13757,17 @@ snapshots:
agent-base@6.0.2:
dependencies:
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
agent-base@7.1.3: {}
+ ajv-formats@2.1.1(ajv@8.17.1):
+ optionalDependencies:
+ ajv: 8.17.1
+ agent-base@7.1.3: {}
+
ajv-formats@2.1.1(ajv@8.17.1):
optionalDependencies:
ajv: 8.17.1
@@ -12354,6 +13781,11 @@ snapshots:
ajv: 8.17.1
fast-deep-equal: 3.1.3
+ ajv-keywords@5.1.0(ajv@8.17.1):
+ dependencies:
+ ajv: 8.17.1
+ fast-deep-equal: 3.1.3
+
ajv@6.12.6:
dependencies:
fast-deep-equal: 3.1.3
@@ -12368,7 +13800,7 @@ snapshots:
json-schema-traverse: 1.0.0
require-from-string: 2.0.2
- alien-signals@0.4.12: {}
+ alien-signals@0.4.11: {}
ansi-colors@4.1.3: {}
@@ -12400,6 +13832,7 @@ snapshots:
lodash: 4.17.21
normalize-path: 3.0.0
readable-stream: 4.6.0
+ readable-stream: 4.6.0
archiver@7.0.1:
dependencies:
@@ -12407,6 +13840,7 @@ snapshots:
async: 3.2.6
buffer-crc32: 1.0.0
readable-stream: 4.6.0
+ readable-stream: 4.6.0
readdir-glob: 1.1.3
tar-stream: 3.1.7
zip-stream: 6.0.1
@@ -12423,22 +13857,30 @@ snapshots:
dependencies:
tslib: 2.8.1
+ array-buffer-byte-length@1.0.2:
array-buffer-byte-length@1.0.2:
dependencies:
call-bound: 1.0.3
is-array-buffer: 3.0.5
+ call-bound: 1.0.3
+ is-array-buffer: 3.0.5
array-union@2.1.0: {}
+ arraybuffer.prototype.slice@1.0.4:
arraybuffer.prototype.slice@1.0.4:
dependencies:
+ array-buffer-byte-length: 1.0.2
+ call-bind: 1.0.8
array-buffer-byte-length: 1.0.2
call-bind: 1.0.8
define-properties: 1.2.1
- es-abstract: 1.23.8
+ es-abstract: 1.23.7
es-errors: 1.3.0
get-intrinsic: 1.2.6
is-array-buffer: 3.0.5
+ get-intrinsic: 1.2.6
+ is-array-buffer: 3.0.5
ast-kit@1.3.2:
dependencies:
@@ -12460,6 +13902,8 @@ snapshots:
autoprefixer@10.4.20(postcss@8.4.49):
dependencies:
+ browserslist: 4.24.3
+ caniuse-lite: 1.0.30001690
browserslist: 4.24.3
caniuse-lite: 1.0.30001690
fraction.js: 4.3.7
@@ -12472,6 +13916,8 @@ snapshots:
dependencies:
possible-typed-array-names: 1.0.0
+ aws4fetch@1.0.20: {}
+
b4a@1.6.7: {}
babel-plugin-macros@3.1.0:
@@ -12479,6 +13925,7 @@ snapshots:
'@babel/runtime': 7.26.0
cosmiconfig: 7.1.0
resolve: 1.22.10
+ resolve: 1.22.10
babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0):
dependencies:
@@ -12516,6 +13963,7 @@ snapshots:
bare-events: 2.5.0
bare-path: 2.1.3
bare-stream: 2.6.1
+ bare-stream: 2.6.1
optional: true
bare-os@2.4.4:
@@ -12526,9 +13974,11 @@ snapshots:
bare-os: 2.4.4
optional: true
+ bare-stream@2.6.1:
bare-stream@2.6.1:
dependencies:
streamx: 2.21.1
+ streamx: 2.21.1
optional: true
base64-js@1.5.1: {}
@@ -12577,12 +14027,17 @@ snapshots:
dependencies:
base64-js: 1.5.1
+ browserslist@4.24.3:
browserslist@4.24.3:
dependencies:
caniuse-lite: 1.0.30001690
electron-to-chromium: 1.5.76
node-releases: 2.0.19
update-browserslist-db: 1.1.1(browserslist@4.24.3)
+ caniuse-lite: 1.0.30001690
+ electron-to-chromium: 1.5.76
+ node-releases: 2.0.19
+ update-browserslist-db: 1.1.1(browserslist@4.24.3)
buffer-crc32@1.0.0: {}
@@ -12605,6 +14060,7 @@ snapshots:
dependencies:
run-applescript: 7.0.0
+ bundle-require@5.1.0(esbuild@0.23.1):
bundle-require@5.1.0(esbuild@0.23.1):
dependencies:
esbuild: 0.23.1
@@ -12615,14 +14071,21 @@ snapshots:
esbuild: 0.24.2
load-tsconfig: 0.2.5
+ bundle-require@5.1.0(esbuild@0.24.2):
+ dependencies:
+ esbuild: 0.24.2
+ load-tsconfig: 0.2.5
+
c12@2.0.1(magicast@0.3.5):
dependencies:
+ chokidar: 4.0.3
chokidar: 4.0.3
confbox: 0.1.8
defu: 6.1.4
dotenv: 16.4.7
giget: 1.2.3
jiti: 2.4.2
+ jiti: 2.4.2
mlly: 1.7.3
ohash: 1.1.4
pathe: 1.1.2
@@ -12634,11 +14097,18 @@ snapshots:
cac@6.7.14: {}
+ call-bind-apply-helpers@1.0.1:
call-bind-apply-helpers@1.0.1:
dependencies:
es-errors: 1.3.0
function-bind: 1.1.2
+ call-bind@1.0.8:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ es-define-property: 1.0.1
+ get-intrinsic: 1.2.6
+
call-bind@1.0.8:
dependencies:
call-bind-apply-helpers: 1.0.1
@@ -12651,16 +14121,24 @@ snapshots:
call-bind-apply-helpers: 1.0.1
get-intrinsic: 1.2.6
+ call-bound@1.0.3:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ get-intrinsic: 1.2.6
+
callsites@3.1.0: {}
caniuse-api@3.0.0:
dependencies:
+ browserslist: 4.24.3
+ caniuse-lite: 1.0.30001690
browserslist: 4.24.3
caniuse-lite: 1.0.30001690
lodash.memoize: 4.1.2
lodash.uniq: 4.5.0
caniuse-lite@1.0.30001690: {}
+ caniuse-lite@1.0.30001690: {}
ccount@2.0.1: {}
@@ -12670,6 +14148,7 @@ snapshots:
supports-color: 7.2.0
chalk@5.4.1: {}
+ chalk@5.4.1: {}
change-case@5.4.4: {}
@@ -12697,6 +14176,7 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ chokidar@4.0.3:
chokidar@4.0.3:
dependencies:
readdirp: 4.0.2
@@ -12708,6 +14188,8 @@ snapshots:
chownr@3.0.0: {}
+ chownr@3.0.0: {}
+
chrome-trace-event@1.0.4: {}
ci-info@3.9.0: {}
@@ -12716,7 +14198,7 @@ snapshots:
citty@0.1.6:
dependencies:
- consola: 3.3.3
+ consola: 3.3.2
cjs-module-lexer@1.4.1: {}
@@ -12797,12 +14279,13 @@ snapshots:
is-stream: 2.0.1
normalize-path: 3.0.0
readable-stream: 4.6.0
+ readable-stream: 4.6.0
concat-map@0.0.1: {}
confbox@0.1.8: {}
- consola@3.3.3: {}
+ consola@3.3.2: {}
convert-source-map@1.9.0: {}
@@ -12819,6 +14302,7 @@ snapshots:
core-js-compat@3.39.0:
dependencies:
browserslist: 4.24.3
+ browserslist: 4.24.3
core-util-is@1.0.3: {}
@@ -12836,11 +14320,13 @@ snapshots:
dependencies:
crc-32: 1.2.2
readable-stream: 4.6.0
+ readable-stream: 4.6.0
croner@9.0.0: {}
cronstrue@2.52.0: {}
+ cross-fetch@3.2.0:
cross-fetch@3.2.0:
dependencies:
node-fetch: 2.7.0
@@ -12869,6 +14355,7 @@ snapshots:
css-what: 6.1.0
domhandler: 5.0.3
domutils: 3.2.1
+ domutils: 3.2.1
nth-check: 2.1.1
css-tree@2.2.1:
@@ -12881,8 +14368,10 @@ snapshots:
mdn-data: 2.0.30
source-map-js: 1.2.1
+ css-tree@3.1.0:
css-tree@3.1.0:
dependencies:
+ mdn-data: 2.12.2
mdn-data: 2.12.2
source-map-js: 1.2.1
@@ -12897,6 +14386,7 @@ snapshots:
cssnano-preset-default@7.0.6(postcss@8.4.49):
dependencies:
+ browserslist: 4.24.3
browserslist: 4.24.3
css-declaration-sorter: 7.2.0(postcss@8.4.49)
cssnano-utils: 5.0.0(postcss@8.4.49)
@@ -13126,23 +14616,32 @@ snapshots:
data-uri-to-buffer@4.0.1: {}
+ data-view-buffer@1.0.2:
data-view-buffer@1.0.2:
dependencies:
+ call-bound: 1.0.3
call-bound: 1.0.3
es-errors: 1.3.0
is-data-view: 1.0.2
+ is-data-view: 1.0.2
+ data-view-byte-length@1.0.2:
data-view-byte-length@1.0.2:
dependencies:
+ call-bound: 1.0.3
call-bound: 1.0.3
es-errors: 1.3.0
is-data-view: 1.0.2
+ is-data-view: 1.0.2
+ data-view-byte-offset@1.0.1:
data-view-byte-offset@1.0.1:
dependencies:
+ call-bound: 1.0.3
call-bound: 1.0.3
es-errors: 1.3.0
is-data-view: 1.0.2
+ is-data-view: 1.0.2
dataloader@1.4.0: {}
@@ -13154,8 +14653,10 @@ snapshots:
dependencies:
'@babel/runtime': 7.26.0
+ dayjs-nuxt@2.1.11(magicast@0.3.5)(rollup@4.29.1):
dayjs-nuxt@2.1.11(magicast@0.3.5)(rollup@4.29.1):
dependencies:
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
dayjs: 1.11.13
transitivePeerDependencies:
@@ -13181,6 +14682,11 @@ snapshots:
dependencies:
ms: 2.1.3
+ debug@4.4.0(supports-color@9.4.0):
+ debug@4.3.7:
+ dependencies:
+ ms: 2.1.3
+
debug@4.4.0(supports-color@9.4.0):
dependencies:
ms: 2.1.3
@@ -13212,6 +14718,7 @@ snapshots:
define-data-property@1.1.4:
dependencies:
+ es-define-property: 1.0.1
es-define-property: 1.0.1
es-errors: 1.3.0
gopd: 1.2.0
@@ -13282,6 +14789,7 @@ snapshots:
dependencies:
domelementtype: 2.3.0
+ domutils@3.2.1:
domutils@3.2.1:
dependencies:
dom-serializer: 2.0.0
@@ -13292,15 +14800,23 @@ snapshots:
dependencies:
no-case: 3.0.4
tslib: 2.4.1
+ tslib: 2.4.1
dot-prop@9.0.0:
dependencies:
type-fest: 4.31.0
+ type-fest: 4.31.0
dotenv@16.4.7: {}
dotenv@8.6.0: {}
+ dunder-proto@1.0.1:
+ dependencies:
+ call-bind-apply-helpers: 1.0.1
+ es-errors: 1.3.0
+ gopd: 1.2.0
+
dunder-proto@1.0.1:
dependencies:
call-bind-apply-helpers: 1.0.1
@@ -13320,6 +14836,7 @@ snapshots:
jake: 10.9.2
electron-to-chromium@1.5.76: {}
+ electron-to-chromium@1.5.76: {}
elkjs@0.8.2: {}
@@ -13346,6 +14863,7 @@ snapshots:
dependencies:
'@socket.io/component-emitter': 3.1.2
debug: 4.3.7
+ debug: 4.3.7
engine.io-parser: 5.2.3
ws: 8.17.1
xmlhttprequest-ssl: 2.1.2
@@ -13356,6 +14874,7 @@ snapshots:
engine.io-parser@5.2.3: {}
+ enhanced-resolve@5.18.0:
enhanced-resolve@5.18.0:
dependencies:
graceful-fs: 4.2.11
@@ -13376,8 +14895,10 @@ snapshots:
errx@0.1.0: {}
- es-abstract@1.23.8:
+ es-abstract@1.23.7:
dependencies:
+ array-buffer-byte-length: 1.0.2
+ arraybuffer.prototype.slice: 1.0.4
array-buffer-byte-length: 1.0.2
arraybuffer.prototype.slice: 1.0.4
available-typed-arrays: 1.0.7
@@ -13387,6 +14908,12 @@ snapshots:
data-view-byte-length: 1.0.2
data-view-byte-offset: 1.0.1
es-define-property: 1.0.1
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ data-view-buffer: 1.0.2
+ data-view-byte-length: 1.0.2
+ data-view-byte-offset: 1.0.1
+ es-define-property: 1.0.1
es-errors: 1.3.0
es-object-atoms: 1.0.0
es-set-tostringtag: 2.0.3
@@ -13394,14 +14921,20 @@ snapshots:
function.prototype.name: 1.1.8
get-intrinsic: 1.2.6
get-symbol-description: 1.1.0
+ function.prototype.name: 1.1.8
+ get-intrinsic: 1.2.6
+ get-symbol-description: 1.1.0
globalthis: 1.0.4
gopd: 1.2.0
has-property-descriptors: 1.0.2
has-proto: 1.2.0
+ has-proto: 1.2.0
has-symbols: 1.1.0
hasown: 2.0.2
internal-slot: 1.1.0
is-array-buffer: 3.0.5
+ internal-slot: 1.1.0
+ is-array-buffer: 3.0.5
is-callable: 1.2.7
is-data-view: 1.0.2
is-regex: 1.2.1
@@ -13410,13 +14943,18 @@ snapshots:
is-typed-array: 1.1.15
is-weakref: 1.1.0
math-intrinsics: 1.1.0
+ is-data-view: 1.0.2
+ is-regex: 1.2.1
+ is-shared-array-buffer: 1.0.4
+ is-string: 1.1.1
+ is-typed-array: 1.1.15
+ is-weakref: 1.1.0
+ math-intrinsics: 1.1.0
object-inspect: 1.13.3
object-keys: 1.1.1
object.assign: 4.1.7
- own-keys: 1.0.1
regexp.prototype.flags: 1.5.3
safe-array-concat: 1.1.3
- safe-push-apply: 1.0.0
safe-regex-test: 1.1.0
string.prototype.trim: 1.2.10
string.prototype.trimend: 1.0.9
@@ -13424,11 +14962,17 @@ snapshots:
typed-array-buffer: 1.0.3
typed-array-byte-length: 1.0.3
typed-array-byte-offset: 1.0.4
+ typed-array-buffer: 1.0.3
+ typed-array-byte-length: 1.0.3
+ typed-array-byte-offset: 1.0.4
typed-array-length: 1.0.7
unbox-primitive: 1.1.0
which-typed-array: 1.1.18
+ unbox-primitive: 1.1.0
+ which-typed-array: 1.1.18
es-define-property@1.0.1: {}
+ es-define-property@1.0.1: {}
es-errors@1.3.0: {}
@@ -13440,6 +14984,7 @@ snapshots:
es-set-tostringtag@2.0.3:
dependencies:
+ get-intrinsic: 1.2.6
get-intrinsic: 1.2.6
has-tostringtag: 1.0.2
hasown: 2.0.2
@@ -13449,6 +14994,8 @@ snapshots:
is-callable: 1.2.7
is-date-object: 1.1.0
is-symbol: 1.1.1
+ is-date-object: 1.1.0
+ is-symbol: 1.1.1
esbuild@0.21.5:
optionalDependencies:
@@ -13503,6 +15050,7 @@ snapshots:
'@esbuild/win32-ia32': 0.23.1
'@esbuild/win32-x64': 0.23.1
+ esbuild@0.24.2:
esbuild@0.24.2:
optionalDependencies:
'@esbuild/aix-ppc64': 0.24.2
@@ -13530,6 +15078,31 @@ snapshots:
'@esbuild/win32-arm64': 0.24.2
'@esbuild/win32-ia32': 0.24.2
'@esbuild/win32-x64': 0.24.2
+ '@esbuild/aix-ppc64': 0.24.2
+ '@esbuild/android-arm': 0.24.2
+ '@esbuild/android-arm64': 0.24.2
+ '@esbuild/android-x64': 0.24.2
+ '@esbuild/darwin-arm64': 0.24.2
+ '@esbuild/darwin-x64': 0.24.2
+ '@esbuild/freebsd-arm64': 0.24.2
+ '@esbuild/freebsd-x64': 0.24.2
+ '@esbuild/linux-arm': 0.24.2
+ '@esbuild/linux-arm64': 0.24.2
+ '@esbuild/linux-ia32': 0.24.2
+ '@esbuild/linux-loong64': 0.24.2
+ '@esbuild/linux-mips64el': 0.24.2
+ '@esbuild/linux-ppc64': 0.24.2
+ '@esbuild/linux-riscv64': 0.24.2
+ '@esbuild/linux-s390x': 0.24.2
+ '@esbuild/linux-x64': 0.24.2
+ '@esbuild/netbsd-arm64': 0.24.2
+ '@esbuild/netbsd-x64': 0.24.2
+ '@esbuild/openbsd-arm64': 0.24.2
+ '@esbuild/openbsd-x64': 0.24.2
+ '@esbuild/sunos-x64': 0.24.2
+ '@esbuild/win32-arm64': 0.24.2
+ '@esbuild/win32-ia32': 0.24.2
+ '@esbuild/win32-x64': 0.24.2
escalade@3.2.0: {}
@@ -13541,18 +15114,25 @@ snapshots:
escape-string-regexp@5.0.0: {}
+ eslint-compat-utils@0.5.1(eslint@9.17.0(jiti@2.4.2)):
eslint-compat-utils@0.5.1(eslint@9.17.0(jiti@2.4.2)):
dependencies:
+ eslint: 9.17.0(jiti@2.4.2)
eslint: 9.17.0(jiti@2.4.2)
semver: 7.6.3
+ eslint-compat-utils@0.6.4(eslint@9.17.0(jiti@2.4.2)):
eslint-compat-utils@0.6.4(eslint@9.17.0(jiti@2.4.2)):
dependencies:
+ eslint: 9.17.0(jiti@2.4.2)
eslint: 9.17.0(jiti@2.4.2)
semver: 7.6.3
+ eslint-config-flat-gitignore@0.3.0(eslint@9.17.0(jiti@2.4.2)):
eslint-config-flat-gitignore@0.3.0(eslint@9.17.0(jiti@2.4.2)):
dependencies:
+ '@eslint/compat': 1.2.4(eslint@9.17.0(jiti@2.4.2))
+ eslint: 9.17.0(jiti@2.4.2)
'@eslint/compat': 1.2.4(eslint@9.17.0(jiti@2.4.2))
eslint: 9.17.0(jiti@2.4.2)
find-up-simple: 1.0.0
@@ -13566,38 +15146,58 @@ snapshots:
debug: 3.2.7
is-core-module: 2.16.1
resolve: 1.22.10
+ is-core-module: 2.16.1
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
+ eslint-json-compat-utils@0.2.1(eslint@9.17.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0):
eslint-json-compat-utils@0.2.1(eslint@9.17.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0):
dependencies:
+ eslint: 9.17.0(jiti@2.4.2)
eslint: 9.17.0(jiti@2.4.2)
esquery: 1.6.0
jsonc-eslint-parser: 2.4.0
+ eslint-merge-processors@0.1.0(eslint@9.17.0(jiti@2.4.2)):
eslint-merge-processors@0.1.0(eslint@9.17.0(jiti@2.4.2)):
dependencies:
eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.17.0(jiti@2.4.2)
+ eslint-plugin-antfu@2.7.0(eslint@9.17.0(jiti@2.4.2)):
eslint-plugin-antfu@2.7.0(eslint@9.17.0(jiti@2.4.2)):
dependencies:
'@antfu/utils': 0.7.10
eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.17.0(jiti@2.4.2)
+ eslint-plugin-command@0.2.7(eslint@9.17.0(jiti@2.4.2)):
eslint-plugin-command@0.2.7(eslint@9.17.0(jiti@2.4.2)):
dependencies:
'@es-joy/jsdoccomment': 0.49.0
eslint: 9.17.0(jiti@2.4.2)
+ '@es-joy/jsdoccomment': 0.49.0
+ eslint: 9.17.0(jiti@2.4.2)
+ eslint-plugin-es-x@7.8.0(eslint@9.17.0(jiti@2.4.2)):
eslint-plugin-es-x@7.8.0(eslint@9.17.0(jiti@2.4.2)):
dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
'@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
eslint: 9.17.0(jiti@2.4.2)
eslint-compat-utils: 0.5.1(eslint@9.17.0(jiti@2.4.2))
+ eslint: 9.17.0(jiti@2.4.2)
+ eslint-compat-utils: 0.5.1(eslint@9.17.0(jiti@2.4.2))
+ eslint-plugin-import-x@4.6.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2):
eslint-plugin-import-x@4.6.1(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2):
dependencies:
+ '@types/doctrine': 0.0.9
+ '@typescript-eslint/scope-manager': 8.18.2
+ '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ debug: 4.4.0(supports-color@9.4.0)
'@types/doctrine': 0.0.9
'@typescript-eslint/scope-manager': 8.18.2
'@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
@@ -13605,6 +15205,8 @@ snapshots:
doctrine: 3.0.0
enhanced-resolve: 5.18.0
eslint: 9.17.0(jiti@2.4.2)
+ enhanced-resolve: 5.18.0
+ eslint: 9.17.0(jiti@2.4.2)
eslint-import-resolver-node: 0.3.9
get-tsconfig: 4.8.1
is-glob: 4.0.3
@@ -13616,14 +15218,17 @@ snapshots:
- supports-color
- typescript
+ eslint-plugin-jsdoc@50.6.1(eslint@9.17.0(jiti@2.4.2)):
eslint-plugin-jsdoc@50.6.1(eslint@9.17.0(jiti@2.4.2)):
dependencies:
'@es-joy/jsdoccomment': 0.49.0
are-docs-informative: 0.0.2
comment-parser: 1.4.1
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
escape-string-regexp: 4.0.0
eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.17.0(jiti@2.4.2)
espree: 10.3.0
esquery: 1.6.0
parse-imports: 2.2.1
@@ -13633,8 +15238,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ eslint-plugin-jsonc@2.18.2(eslint@9.17.0(jiti@2.4.2)):
eslint-plugin-jsonc@2.18.2(eslint@9.17.0(jiti@2.4.2)):
dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ eslint: 9.17.0(jiti@2.4.2)
+ eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@2.4.2))
+ eslint-json-compat-utils: 0.2.1(eslint@9.17.0(jiti@2.4.2))(jsonc-eslint-parser@2.4.0)
'@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
eslint: 9.17.0(jiti@2.4.2)
eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@2.4.2))
@@ -13647,22 +15257,32 @@ snapshots:
transitivePeerDependencies:
- '@eslint/json'
+ eslint-plugin-n@17.15.1(eslint@9.17.0(jiti@2.4.2)):
eslint-plugin-n@17.15.1(eslint@9.17.0(jiti@2.4.2)):
dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ enhanced-resolve: 5.18.0
+ eslint: 9.17.0(jiti@2.4.2)
+ eslint-plugin-es-x: 7.8.0(eslint@9.17.0(jiti@2.4.2))
'@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
enhanced-resolve: 5.18.0
eslint: 9.17.0(jiti@2.4.2)
eslint-plugin-es-x: 7.8.0(eslint@9.17.0(jiti@2.4.2))
get-tsconfig: 4.8.1
globals: 15.14.0
+ globals: 15.14.0
ignore: 5.3.2
minimatch: 9.0.5
semver: 7.6.3
eslint-plugin-no-only-tests@3.3.0: {}
+ eslint-plugin-perfectionist@4.4.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2):
eslint-plugin-perfectionist@4.4.0(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2):
dependencies:
+ '@typescript-eslint/types': 8.18.2
+ '@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ eslint: 9.17.0(jiti@2.4.2)
'@typescript-eslint/types': 8.18.2
'@typescript-eslint/utils': 8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
eslint: 9.17.0(jiti@2.4.2)
@@ -13671,19 +15291,26 @@ snapshots:
- supports-color
- typescript
+ eslint-plugin-regexp@2.7.0(eslint@9.17.0(jiti@2.4.2)):
eslint-plugin-regexp@2.7.0(eslint@9.17.0(jiti@2.4.2)):
dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
'@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
comment-parser: 1.4.1
eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.17.0(jiti@2.4.2)
jsdoc-type-pratt-parser: 4.1.0
refa: 0.12.1
regexp-ast-analysis: 0.7.1
scslre: 0.3.0
+ eslint-plugin-toml@0.12.0(eslint@9.17.0(jiti@2.4.2)):
eslint-plugin-toml@0.12.0(eslint@9.17.0(jiti@2.4.2)):
dependencies:
+ debug: 4.4.0(supports-color@9.4.0)
+ eslint: 9.17.0(jiti@2.4.2)
+ eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@2.4.2))
debug: 4.4.0(supports-color@9.4.0)
eslint: 9.17.0(jiti@2.4.2)
eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@2.4.2))
@@ -13692,19 +15319,24 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ eslint-plugin-unicorn@56.0.1(eslint@9.17.0(jiti@2.4.2)):
eslint-plugin-unicorn@56.0.1(eslint@9.17.0(jiti@2.4.2)):
dependencies:
'@babel/helper-validator-identifier': 7.25.9
'@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
ci-info: 4.1.0
clean-regexp: 1.0.0
core-js-compat: 3.39.0
eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.17.0(jiti@2.4.2)
esquery: 1.6.0
globals: 15.14.0
+ globals: 15.14.0
indent-string: 4.0.0
is-builtin-module: 3.2.1
jsesc: 3.1.0
+ jsesc: 3.1.0
pluralize: 8.0.0
read-pkg-up: 7.0.1
regexp-tree: 0.1.27
@@ -13712,14 +15344,20 @@ snapshots:
semver: 7.6.3
strip-indent: 3.0.0
+ eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2)):
eslint-plugin-unused-imports@4.1.4(@typescript-eslint/eslint-plugin@8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2)):
dependencies:
eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.17.0(jiti@2.4.2)
optionalDependencies:
'@typescript-eslint/eslint-plugin': 8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ '@typescript-eslint/eslint-plugin': 8.18.2(@typescript-eslint/parser@8.18.2(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2))(eslint@9.17.0(jiti@2.4.2))(typescript@5.7.2)
+ eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.4.2)):
eslint-plugin-vue@9.32.0(eslint@9.17.0(jiti@2.4.2)):
dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
+ eslint: 9.17.0(jiti@2.4.2)
'@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
eslint: 9.17.0(jiti@2.4.2)
globals: 13.24.0
@@ -13728,12 +15366,17 @@ snapshots:
postcss-selector-parser: 6.1.2
semver: 7.6.3
vue-eslint-parser: 9.4.3(eslint@9.17.0(jiti@2.4.2))
+ vue-eslint-parser: 9.4.3(eslint@9.17.0(jiti@2.4.2))
xml-name-validator: 4.0.0
transitivePeerDependencies:
- supports-color
+ eslint-plugin-yml@1.16.0(eslint@9.17.0(jiti@2.4.2)):
eslint-plugin-yml@1.16.0(eslint@9.17.0(jiti@2.4.2)):
dependencies:
+ debug: 4.4.0(supports-color@9.4.0)
+ eslint: 9.17.0(jiti@2.4.2)
+ eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@2.4.2))
debug: 4.4.0(supports-color@9.4.0)
eslint: 9.17.0(jiti@2.4.2)
eslint-compat-utils: 0.6.4(eslint@9.17.0(jiti@2.4.2))
@@ -13743,10 +15386,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2)):
eslint-processor-vue-blocks@0.1.2(@vue/compiler-sfc@3.5.13)(eslint@9.17.0(jiti@2.4.2)):
dependencies:
'@vue/compiler-sfc': 3.5.13
eslint: 9.17.0(jiti@2.4.2)
+ eslint: 9.17.0(jiti@2.4.2)
eslint-scope@5.1.1:
dependencies:
@@ -13767,14 +15412,17 @@ snapshots:
eslint-visitor-keys@4.2.0: {}
+ eslint@9.17.0(jiti@2.4.2):
eslint@9.17.0(jiti@2.4.2):
dependencies:
+ '@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
'@eslint-community/eslint-utils': 4.4.1(eslint@9.17.0(jiti@2.4.2))
'@eslint-community/regexpp': 4.12.1
'@eslint/config-array': 0.19.1
'@eslint/core': 0.9.1
'@eslint/eslintrc': 3.2.0
'@eslint/js': 9.17.0
+ '@eslint/js': 9.17.0
'@eslint/plugin-kit': 0.2.4
'@humanfs/node': 0.16.6
'@humanwhocodes/module-importer': 1.0.1
@@ -13785,6 +15433,7 @@ snapshots:
chalk: 4.1.2
cross-spawn: 7.0.6
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
escape-string-regexp: 4.0.0
eslint-scope: 8.2.0
eslint-visitor-keys: 4.2.0
@@ -13805,6 +15454,7 @@ snapshots:
optionator: 0.9.4
optionalDependencies:
jiti: 2.4.2
+ jiti: 2.4.2
transitivePeerDependencies:
- supports-color
@@ -13889,6 +15539,7 @@ snapshots:
externality@1.0.2:
dependencies:
+ enhanced-resolve: 5.18.0
enhanced-resolve: 5.18.0
mlly: 1.7.3
pathe: 1.1.2
@@ -13916,6 +15567,7 @@ snapshots:
fast-uri@3.0.3: {}
+ fastq@1.18.0:
fastq@1.18.0:
dependencies:
reusify: 1.0.4
@@ -13972,6 +15624,7 @@ snapshots:
'@capsizecss/unpack': 2.3.0
magic-regexp: 0.8.0
magic-string: 0.30.17
+ magic-string: 0.30.17
pathe: 1.1.2
ufo: 1.5.4
unplugin: 1.16.0
@@ -14011,6 +15664,8 @@ snapshots:
forwarded-parse@2.1.2: {}
+ forwarded-parse@2.1.2: {}
+
fraction.js@4.3.7: {}
fresh@0.5.2: {}
@@ -14054,14 +15709,19 @@ snapshots:
function-bind@1.1.2: {}
+ function.prototype.name@1.1.8:
function.prototype.name@1.1.8:
dependencies:
+ call-bind: 1.0.8
+ call-bound: 1.0.3
call-bind: 1.0.8
call-bound: 1.0.3
define-properties: 1.2.1
functions-have-names: 1.2.3
hasown: 2.0.2
is-callable: 1.2.7
+ hasown: 2.0.2
+ is-callable: 1.2.7
functions-have-names@1.2.3: {}
@@ -14073,18 +15733,25 @@ snapshots:
get-caller-file@2.0.5: {}
+ get-intrinsic@1.2.6:
get-intrinsic@1.2.6:
dependencies:
+ call-bind-apply-helpers: 1.0.1
+ dunder-proto: 1.0.1
+ es-define-property: 1.0.1
call-bind-apply-helpers: 1.0.1
dunder-proto: 1.0.1
es-define-property: 1.0.1
es-errors: 1.3.0
es-object-atoms: 1.0.0
+ es-object-atoms: 1.0.0
function-bind: 1.1.2
gopd: 1.2.0
+ gopd: 1.2.0
has-symbols: 1.1.0
hasown: 2.0.2
math-intrinsics: 1.1.0
+ math-intrinsics: 1.1.0
get-own-enumerable-property-symbols@3.0.2: {}
@@ -14094,11 +15761,14 @@ snapshots:
get-stream@8.0.1: {}
+ get-symbol-description@1.1.0:
get-symbol-description@1.1.0:
dependencies:
+ call-bound: 1.0.3
call-bound: 1.0.3
es-errors: 1.3.0
get-intrinsic: 1.2.6
+ get-intrinsic: 1.2.6
get-tsconfig@4.8.1:
dependencies:
@@ -14107,7 +15777,7 @@ snapshots:
giget@1.2.3:
dependencies:
citty: 0.1.6
- consola: 3.3.3
+ consola: 3.3.2
defu: 6.1.4
node-fetch-native: 1.6.4
nypm: 0.3.12
@@ -14117,14 +15787,18 @@ snapshots:
git-config-path@2.0.0: {}
+ git-up@8.0.0:
git-up@8.0.0:
dependencies:
is-ssh: 1.4.0
parse-url: 9.2.0
+ parse-url: 9.2.0
+ git-url-parse@16.0.0:
git-url-parse@16.0.0:
dependencies:
git-up: 8.0.0
+ git-up: 8.0.0
github-from-package@0.0.0:
optional: true
@@ -14186,6 +15860,7 @@ snapshots:
globals@14.0.0: {}
+ globals@15.14.0: {}
globals@15.14.0: {}
globalthis@1.0.4:
@@ -14232,10 +15907,10 @@ snapshots:
dependencies:
duplexer: 0.1.2
- h3-clerk@0.5.22(h3@1.13.0)(react@18.3.1):
+ h3-clerk@0.5.22(h3@1.13.0)(react@19.0.0):
dependencies:
- '@clerk/backend': 1.21.4(react@18.3.1)
- '@clerk/shared': 2.20.4(react@18.3.1)
+ '@clerk/backend': 1.21.4(react@19.0.0)
+ '@clerk/shared': 2.20.4(react@19.0.0)
h3: 1.13.0
transitivePeerDependencies:
- react
@@ -14255,16 +15930,20 @@ snapshots:
unenv: 1.10.0
has-bigints@1.1.0: {}
+ has-bigints@1.1.0: {}
has-flag@4.0.0: {}
has-property-descriptors@1.0.2:
dependencies:
es-define-property: 1.0.1
+ es-define-property: 1.0.1
+ has-proto@1.2.0:
has-proto@1.2.0:
dependencies:
dunder-proto: 1.0.1
+ dunder-proto: 1.0.1
has-symbols@1.1.0: {}
@@ -14304,6 +15983,7 @@ snapshots:
'@types/hast': 3.0.4
'@types/unist': 3.0.3
'@ungap/structured-clone': 1.2.1
+ '@ungap/structured-clone': 1.2.1
hast-util-from-parse5: 8.0.2
hast-util-to-parse5: 8.0.0
html-void-elements: 3.0.0
@@ -14315,6 +15995,7 @@ snapshots:
web-namespaces: 2.0.1
zwitch: 2.0.4
+ hast-util-to-html@9.0.4:
hast-util-to-html@9.0.4:
dependencies:
'@types/hast': 3.0.4
@@ -14370,6 +16051,7 @@ snapshots:
domelementtype: 2.3.0
domhandler: 5.0.3
domutils: 3.2.1
+ domutils: 3.2.1
entities: 4.5.0
http-errors@2.0.0:
@@ -14386,13 +16068,17 @@ snapshots:
dependencies:
agent-base: 6.0.2
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
+ https-proxy-agent@7.0.6(supports-color@9.4.0):
https-proxy-agent@7.0.6(supports-color@9.4.0):
dependencies:
agent-base: 7.1.3
debug: 4.4.0(supports-color@9.4.0)
+ agent-base: 7.1.3
+ debug: 4.4.0(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -14418,6 +16104,7 @@ snapshots:
ignore@5.3.2: {}
+ ignore@7.0.0: {}
ignore@7.0.0: {}
image-meta@0.2.1: {}
@@ -14429,6 +16116,7 @@ snapshots:
parent-module: 1.0.1
resolve-from: 4.0.0
+ import-in-the-middle@1.12.0:
import-in-the-middle@1.12.0:
dependencies:
acorn: 8.14.0
@@ -14438,18 +16126,34 @@ snapshots:
importx@0.4.4:
dependencies:
+ bundle-require: 5.1.0(esbuild@0.23.1)
+ debug: 4.4.0(supports-color@9.4.0)
bundle-require: 5.1.0(esbuild@0.23.1)
debug: 4.4.0(supports-color@9.4.0)
esbuild: 0.23.1
jiti: 2.0.0-beta.3
jiti-v1: jiti@1.21.7
+ jiti-v1: jiti@1.21.7
pathe: 1.1.2
tsx: 4.19.2
transitivePeerDependencies:
- supports-color
importx@0.5.1:
+ importx@0.5.1:
+ dependencies:
+ bundle-require: 5.1.0(esbuild@0.24.2)
+ debug: 4.4.0(supports-color@9.4.0)
+ esbuild: 0.24.2
+ jiti: 2.4.2
+ pathe: 1.1.2
+ tsx: 4.19.2
+ transitivePeerDependencies:
+ - supports-color
+
+ impound@0.2.0(rollup@4.29.1):
dependencies:
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
bundle-require: 5.1.0(esbuild@0.24.2)
debug: 4.4.0(supports-color@9.4.0)
esbuild: 0.24.2
@@ -14486,21 +16190,25 @@ snapshots:
ini@4.1.1: {}
+ internal-slot@1.1.0:
internal-slot@1.1.0:
dependencies:
es-errors: 1.3.0
hasown: 2.0.2
side-channel: 1.1.0
+ side-channel: 1.1.0
internmap@1.0.1: {}
internmap@2.0.3: {}
+ ioredis@5.4.2:
ioredis@5.4.2:
dependencies:
'@ioredis/commands': 1.2.0
cluster-key-slot: 1.1.2
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
denque: 2.1.0
lodash.defaults: 4.2.0
lodash.isarguments: 3.1.0
@@ -14510,11 +16218,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- ipx@2.1.0(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2):
+ ipx@2.1.0(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2):
dependencies:
'@fastify/accept-negotiator': 1.1.0
citty: 0.1.6
- consola: 3.3.3
+ consola: 3.3.2
defu: 6.1.4
destr: 2.0.3
etag: 1.8.1
@@ -14526,7 +16234,7 @@ snapshots:
sharp: 0.32.6
svgo: 3.3.2
ufo: 1.5.4
- unstorage: 1.14.4(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)
+ unstorage: 1.14.3(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)
xss: 1.0.15
transitivePeerDependencies:
- '@azure/app-configuration'
@@ -14537,16 +16245,21 @@ snapshots:
- '@azure/storage-blob'
- '@capacitor/preferences'
- '@deno/kv'
+ - '@deno/kv'
- '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/blob'
+ - '@vercel/blob'
- '@vercel/kv'
- aws4fetch
- db0
+ - aws4fetch
+ - db0
- idb-keyval
- ioredis
- uploadthing
+ - uploadthing
optional: true
iron-webcrypto@1.2.1: {}
@@ -14560,11 +16273,15 @@ snapshots:
is-alphabetical: 2.0.1
is-decimal: 2.0.1
+ is-array-buffer@3.0.5:
is-array-buffer@3.0.5:
dependencies:
call-bind: 1.0.8
call-bound: 1.0.3
get-intrinsic: 1.2.6
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ get-intrinsic: 1.2.6
is-arrayish@0.2.1: {}
@@ -14578,13 +16295,16 @@ snapshots:
is-bigint@1.1.0:
dependencies:
has-bigints: 1.1.0
+ has-bigints: 1.1.0
is-binary-path@2.1.0:
dependencies:
binary-extensions: 2.3.0
+ is-boolean-object@1.2.1:
is-boolean-object@1.2.1:
dependencies:
+ call-bound: 1.0.3
call-bound: 1.0.3
has-tostringtag: 1.0.2
@@ -14594,18 +16314,25 @@ snapshots:
is-callable@1.2.7: {}
+ is-core-module@2.16.1:
is-core-module@2.16.1:
dependencies:
hasown: 2.0.2
+ is-data-view@1.0.2:
is-data-view@1.0.2:
dependencies:
call-bound: 1.0.3
get-intrinsic: 1.2.6
is-typed-array: 1.1.15
+ call-bound: 1.0.3
+ get-intrinsic: 1.2.6
+ is-typed-array: 1.1.15
+ is-date-object@1.1.0:
is-date-object@1.1.0:
dependencies:
+ call-bound: 1.0.3
call-bound: 1.0.3
has-tostringtag: 1.0.2
@@ -14617,9 +16344,11 @@ snapshots:
is-extglob@2.1.1: {}
+ is-finalizationregistry@1.1.1:
is-finalizationregistry@1.1.1:
dependencies:
call-bound: 1.0.3
+ call-bound: 1.0.3
is-fullwidth-code-point@3.0.0: {}
@@ -14646,8 +16375,10 @@ snapshots:
is-module@1.0.0: {}
+ is-number-object@1.1.1:
is-number-object@1.1.1:
dependencies:
+ call-bound: 1.0.3
call-bound: 1.0.3
has-tostringtag: 1.0.2
@@ -14665,8 +16396,10 @@ snapshots:
dependencies:
'@types/estree': 1.0.6
+ is-regex@1.2.1:
is-regex@1.2.1:
dependencies:
+ call-bound: 1.0.3
call-bound: 1.0.3
gopd: 1.2.0
has-tostringtag: 1.0.2
@@ -14676,9 +16409,11 @@ snapshots:
is-set@2.0.3: {}
+ is-shared-array-buffer@1.0.4:
is-shared-array-buffer@1.0.4:
dependencies:
call-bound: 1.0.3
+ call-bound: 1.0.3
is-ssh@1.4.0:
dependencies:
@@ -14688,8 +16423,10 @@ snapshots:
is-stream@3.0.0: {}
+ is-string@1.1.1:
is-string@1.1.1:
dependencies:
+ call-bound: 1.0.3
call-bound: 1.0.3
has-tostringtag: 1.0.2
@@ -14697,26 +16434,36 @@ snapshots:
dependencies:
better-path-resolve: 1.0.0
+ is-symbol@1.1.1:
is-symbol@1.1.1:
dependencies:
+ call-bound: 1.0.3
call-bound: 1.0.3
has-symbols: 1.1.0
safe-regex-test: 1.1.0
+ safe-regex-test: 1.1.0
+ is-typed-array@1.1.15:
is-typed-array@1.1.15:
dependencies:
which-typed-array: 1.1.18
+ which-typed-array: 1.1.18
is-weakmap@2.0.2: {}
+ is-weakref@1.1.0:
is-weakref@1.1.0:
dependencies:
call-bound: 1.0.3
+ call-bound: 1.0.3
+ is-weakset@2.0.4:
is-weakset@2.0.4:
dependencies:
call-bound: 1.0.3
get-intrinsic: 1.2.6
+ call-bound: 1.0.3
+ get-intrinsic: 1.2.6
is-what@4.1.16: {}
@@ -14755,14 +16502,17 @@ snapshots:
jest-worker@27.5.1:
dependencies:
+ '@types/node': 22.10.2
'@types/node': 22.10.2
merge-stream: 2.0.0
supports-color: 8.1.1
jiti@1.21.7: {}
+ jiti@1.21.7: {}
jiti@2.0.0-beta.3: {}
+ jiti@2.4.2: {}
jiti@2.4.2: {}
js-cookie@3.0.5: {}
@@ -14790,6 +16540,8 @@ snapshots:
jsesc@3.1.0: {}
+ jsesc@3.1.0: {}
+
json-buffer@3.0.1: {}
json-parse-even-better-errors@2.3.1: {}
@@ -14835,6 +16587,7 @@ snapshots:
klona@2.0.6: {}
+ knitwork@1.2.0: {}
knitwork@1.2.0: {}
kolorist@1.8.0: {}
@@ -14871,13 +16624,14 @@ snapshots:
'@parcel/watcher-wasm': 2.5.0
citty: 0.1.6
clipboardy: 4.0.0
- consola: 3.3.3
+ consola: 3.3.2
crossws: 0.3.1
defu: 6.1.4
get-port-please: 3.1.2
h3: 1.13.0
http-shutdown: 1.2.2
jiti: 2.4.2
+ jiti: 2.4.2
mlly: 1.7.3
node-forge: 1.3.1
pathe: 1.1.2
@@ -14929,13 +16683,10 @@ snapshots:
longest-streak@3.1.0: {}
- loose-envify@1.4.0:
- dependencies:
- js-tokens: 4.0.0
-
lower-case@2.0.2:
dependencies:
tslib: 2.4.1
+ tslib: 2.4.1
lru-cache@10.4.3: {}
@@ -14951,6 +16702,7 @@ snapshots:
dependencies:
estree-walker: 3.0.3
magic-string: 0.30.17
+ magic-string: 0.30.17
mlly: 1.7.3
regexp-tree: 0.1.27
type-level-regexp: 0.1.17
@@ -14960,11 +16712,13 @@ snapshots:
magic-string-ast@0.6.3:
dependencies:
magic-string: 0.30.17
+ magic-string: 0.30.17
magic-string@0.25.9:
dependencies:
sourcemap-codec: 1.4.8
+ magic-string@0.30.17:
magic-string@0.30.17:
dependencies:
'@jridgewell/sourcemap-codec': 1.5.0
@@ -14992,6 +16746,7 @@ snapshots:
'@mapbox/vector-tile': 1.3.1
'@mapbox/whoots-js': 3.1.0
'@types/geojson': 7946.0.15
+ '@types/geojson': 7946.0.15
'@types/mapbox__point-geometry': 0.1.4
'@types/mapbox__vector-tile': 1.3.4
'@types/pbf': 3.0.5
@@ -15012,6 +16767,8 @@ snapshots:
math-intrinsics@1.1.0: {}
+ math-intrinsics@1.1.0: {}
+
mdast-util-find-and-replace@3.0.1:
dependencies:
'@types/mdast': 4.0.4
@@ -15103,6 +16860,7 @@ snapshots:
'@types/hast': 3.0.4
'@types/mdast': 4.0.4
'@ungap/structured-clone': 1.2.1
+ '@ungap/structured-clone': 1.2.1
devlop: 1.1.0
micromark-util-sanitize-uri: 2.0.1
trim-lines: 3.0.1
@@ -15130,6 +16888,7 @@ snapshots:
mdn-data@2.0.30: {}
+ mdn-data@2.12.2: {}
mdn-data@2.12.2: {}
mdurl@2.0.0: {}
@@ -15313,6 +17072,7 @@ snapshots:
dependencies:
'@types/debug': 4.1.12
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.2
@@ -15346,6 +17106,7 @@ snapshots:
mime@3.0.0: {}
+ mime@4.0.6: {}
mime@4.0.6: {}
mimic-fn@4.0.0: {}
@@ -15397,6 +17158,11 @@ snapshots:
minipass: 7.1.2
rimraf: 5.0.10
+ minizlib@3.0.1:
+ dependencies:
+ minipass: 7.1.2
+ rimraf: 5.0.10
+
mitt@3.0.1: {}
mkdirp-classic@0.5.3:
@@ -15406,6 +17172,8 @@ snapshots:
mkdirp@3.0.1: {}
+ mkdirp@3.0.1: {}
+
mlly@1.7.3:
dependencies:
acorn: 8.14.0
@@ -15442,8 +17210,10 @@ snapshots:
neo-async@2.6.2: {}
+ netlify@13.2.0:
netlify@13.2.0:
dependencies:
+ '@netlify/open-api': 2.35.0
'@netlify/open-api': 2.35.0
lodash-es: 4.17.21
micro-api-client: 3.3.0
@@ -15452,7 +17222,7 @@ snapshots:
p-wait-for: 4.1.0
qs: 6.13.1
- nitropack@2.10.4(@netlify/blobs@8.1.0)(typescript@5.7.2):
+ nitropack@2.10.4(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(typescript@5.7.2):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
'@netlify/functions': 2.8.2
@@ -15464,15 +17234,24 @@ snapshots:
'@rollup/plugin-replace': 6.0.2(rollup@4.29.1)
'@rollup/plugin-terser': 0.4.4(rollup@4.29.1)
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
+ '@rollup/plugin-alias': 5.1.1(rollup@4.29.1)
+ '@rollup/plugin-commonjs': 28.0.2(rollup@4.29.1)
+ '@rollup/plugin-inject': 5.0.5(rollup@4.29.1)
+ '@rollup/plugin-json': 6.1.0(rollup@4.29.1)
+ '@rollup/plugin-node-resolve': 15.3.1(rollup@4.29.1)
+ '@rollup/plugin-replace': 6.0.2(rollup@4.29.1)
+ '@rollup/plugin-terser': 0.4.4(rollup@4.29.1)
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
'@types/http-proxy': 1.17.15
'@vercel/nft': 0.27.10(rollup@4.29.1)
+ '@vercel/nft': 0.27.10(rollup@4.29.1)
archiver: 7.0.1
c12: 2.0.1(magicast@0.3.5)
chokidar: 3.6.0
citty: 0.1.6
compatx: 0.1.8
confbox: 0.1.8
- consola: 3.3.3
+ consola: 3.3.2
cookie-es: 1.2.2
croner: 9.0.0
crossws: 0.3.1
@@ -15481,6 +17260,7 @@ snapshots:
destr: 2.0.3
dot-prop: 9.0.0
esbuild: 0.24.2
+ esbuild: 0.24.2
escape-string-regexp: 5.0.0
etag: 1.8.1
fs-extra: 11.2.0
@@ -15491,12 +17271,17 @@ snapshots:
httpxy: 0.1.5
ioredis: 5.4.2
jiti: 2.4.2
+ ioredis: 5.4.2
+ jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
+ knitwork: 1.2.0
listhen: 1.9.0
magic-string: 0.30.17
+ magic-string: 0.30.17
magicast: 0.3.5
mime: 4.0.6
+ mime: 4.0.6
mlly: 1.7.3
node-fetch-native: 1.6.4
ofetch: 1.4.1
@@ -15508,7 +17293,7 @@ snapshots:
pretty-bytes: 6.1.1
radix3: 1.1.2
rollup: 4.29.1
- rollup-plugin-visualizer: 5.13.1(rollup@4.29.1)
+ rollup-plugin-visualizer: 5.12.0(rollup@4.29.1)
scule: 1.3.0
semver: 7.6.3
serve-placeholder: 2.0.2
@@ -15517,9 +17302,10 @@ snapshots:
ufo: 1.5.4
uncrypto: 0.1.3
unctx: 2.4.1
+ unctx: 2.4.1
unenv: 1.10.0
unimport: 3.14.5(rollup@4.29.1)
- unstorage: 1.14.4(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)
+ unstorage: 1.14.3(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)
untyped: 1.5.2
unwasm: 0.3.9
transitivePeerDependencies:
@@ -15531,14 +17317,17 @@ snapshots:
- '@azure/storage-blob'
- '@capacitor/preferences'
- '@deno/kv'
+ - '@deno/kv'
- '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/blob'
+ - '@vercel/blob'
- '@vercel/kv'
- aws4fetch
+ - aws4fetch
- better-sqlite3
- drizzle-orm
- encoding
@@ -15548,11 +17337,13 @@ snapshots:
- supports-color
- typescript
- uploadthing
+ - uploadthing
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
tslib: 2.4.1
+ tslib: 2.4.1
node-abi@3.71.0:
dependencies:
@@ -15589,16 +17380,20 @@ snapshots:
node-gyp-build@4.8.4: {}
+ node-releases@2.0.19: {}
node-releases@2.0.19: {}
+ nopt@8.0.0:
nopt@8.0.0:
dependencies:
abbrev: 2.0.0
+ abbrev: 2.0.0
normalize-package-data@2.5.0:
dependencies:
hosted-git-info: 2.8.9
resolve: 1.22.10
+ resolve: 1.22.10
semver: 5.7.2
validate-npm-package-license: 3.0.4
@@ -15619,9 +17414,12 @@ snapshots:
boolbase: 1.0.0
nuxi@3.17.2: {}
+ nuxi@3.17.2: {}
+ nuxt-svgo@4.0.9(magicast@0.3.5)(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2)):
nuxt-svgo@4.0.9(magicast@0.3.5)(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2)):
dependencies:
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
mini-svg-data-uri: 1.4.4
svgo: 3.0.2
@@ -15631,7 +17429,7 @@ snapshots:
- rollup
- supports-color
- nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1):
+ nuxt@3.15.0(@netlify/blobs@8.1.0)(@parcel/watcher@2.5.0)(@types/node@22.10.2)(aws4fetch@1.0.20)(db0@0.2.1)(eslint@9.17.0(jiti@2.4.2))(ioredis@5.4.2)(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2))(yaml@2.6.1):
dependencies:
'@nuxt/devalue': 2.0.2
'@nuxt/devtools': 1.7.0(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
@@ -15643,18 +17441,29 @@ snapshots:
'@unhead/shared': 1.11.14
'@unhead/ssr': 1.11.14
'@unhead/vue': 1.11.14(vue@3.5.13(typescript@5.7.2))
+ '@nuxt/devtools': 1.7.0(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
+ '@nuxt/schema': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
+ '@nuxt/telemetry': 2.6.2(magicast@0.3.5)(rollup@4.29.1)
+ '@nuxt/vite-builder': 3.15.0(@types/node@22.10.2)(eslint@9.17.0(jiti@2.4.2))(magicast@0.3.5)(optionator@0.9.4)(rollup@4.29.1)(terser@5.37.0)(tsx@4.19.2)(typescript@5.7.2)(vue-tsc@2.2.0(typescript@5.7.2))(vue@3.5.13(typescript@5.7.2))(yaml@2.6.1)
+ '@unhead/dom': 1.11.14
+ '@unhead/shared': 1.11.14
+ '@unhead/ssr': 1.11.14
+ '@unhead/vue': 1.11.14(vue@3.5.13(typescript@5.7.2))
'@vue/shared': 3.5.13
acorn: 8.14.0
c12: 2.0.1(magicast@0.3.5)
chokidar: 4.0.3
+ chokidar: 4.0.3
compatx: 0.1.8
- consola: 3.3.3
+ consola: 3.3.2
cookie-es: 1.2.2
defu: 6.1.4
destr: 2.0.3
devalue: 5.1.1
errx: 0.1.0
esbuild: 0.24.2
+ esbuild: 0.24.2
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
globby: 14.0.2
@@ -15663,12 +17472,17 @@ snapshots:
ignore: 7.0.0
impound: 0.2.0(rollup@4.29.1)
jiti: 2.4.2
+ ignore: 7.0.0
+ impound: 0.2.0(rollup@4.29.1)
+ jiti: 2.4.2
klona: 2.0.6
knitwork: 1.2.0
magic-string: 0.30.17
+ knitwork: 1.2.0
+ magic-string: 0.30.17
mlly: 1.7.3
nanotar: 0.1.1
- nitropack: 2.10.4(@netlify/blobs@8.1.0)(typescript@5.7.2)
+ nitropack: 2.10.4(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(typescript@5.7.2)
nuxi: 3.17.2
nypm: 0.4.1
ofetch: 1.4.1
@@ -15686,12 +17500,13 @@ snapshots:
ultrahtml: 1.5.3
uncrypto: 0.1.3
unctx: 2.4.1
+ unctx: 2.4.1
unenv: 1.10.0
unhead: 1.11.14
unimport: 3.14.5(rollup@4.29.1)
- unplugin: 2.1.2
+ unplugin: 2.1.0
unplugin-vue-router: 0.10.9(rollup@4.29.1)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2))
- unstorage: 1.14.4(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2)
+ unstorage: 1.14.3(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2)
untyped: 1.5.2
vue: 3.5.13(typescript@5.7.2)
vue-bundle-renderer: 2.1.1
@@ -15700,6 +17515,7 @@ snapshots:
optionalDependencies:
'@parcel/watcher': 2.5.0
'@types/node': 22.10.2
+ '@types/node': 22.10.2
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -15710,17 +17526,21 @@ snapshots:
- '@biomejs/biome'
- '@capacitor/preferences'
- '@deno/kv'
+ - '@deno/kv'
- '@electric-sql/pglite'
- '@libsql/client'
- '@netlify/blobs'
- '@planetscale/database'
- '@upstash/redis'
- '@vercel/blob'
+ - '@vercel/blob'
- '@vercel/kv'
- aws4fetch
+ - aws4fetch
- better-sqlite3
- bufferutil
- db0
+ - db0
- drizzle-orm
- encoding
- eslint
@@ -15742,8 +17562,10 @@ snapshots:
- supports-color
- terser
- tsx
+ - tsx
- typescript
- uploadthing
+ - uploadthing
- utf-8-validate
- vite
- vls
@@ -15751,11 +17573,12 @@ snapshots:
- vue-tsc
- xml2js
- yaml
+ - yaml
nypm@0.3.12:
dependencies:
citty: 0.1.6
- consola: 3.3.3
+ consola: 3.3.2
execa: 8.0.1
pathe: 1.1.2
pkg-types: 1.3.0
@@ -15764,7 +17587,7 @@ snapshots:
nypm@0.4.1:
dependencies:
citty: 0.1.6
- consola: 3.3.3
+ consola: 3.3.2
pathe: 1.1.2
pkg-types: 1.3.0
tinyexec: 0.3.2
@@ -15774,12 +17597,16 @@ snapshots:
object-keys@1.1.1: {}
+ object.assign@4.1.7:
object.assign@4.1.7:
dependencies:
+ call-bind: 1.0.8
+ call-bound: 1.0.3
call-bind: 1.0.8
call-bound: 1.0.3
define-properties: 1.2.1
es-object-atoms: 1.0.0
+ es-object-atoms: 1.0.0
has-symbols: 1.1.0
object-keys: 1.1.1
@@ -15818,11 +17645,12 @@ snapshots:
dependencies:
mimic-fn: 4.0.0
+ oniguruma-to-es@0.8.1:
oniguruma-to-es@0.8.1:
dependencies:
emoji-regex-xs: 1.0.0
- regex: 5.1.1
- regex-recursion: 5.1.1
+ regex: 5.0.2
+ regex-recursion: 5.0.0
open@10.1.0:
dependencies:
@@ -15839,6 +17667,7 @@ snapshots:
openapi-typescript@7.4.4(typescript@5.7.2):
dependencies:
+ '@redocly/openapi-core': 1.26.1(supports-color@9.4.0)
'@redocly/openapi-core': 1.26.1(supports-color@9.4.0)
ansi-colors: 4.1.3
change-case: 5.4.4
@@ -15900,6 +17729,7 @@ snapshots:
package-json-from-dist@1.0.1: {}
+ package-manager-detector@0.2.8: {}
package-manager-detector@0.2.8: {}
pako@0.2.9: {}
@@ -15908,6 +17738,7 @@ snapshots:
dependencies:
callsites: 3.1.0
+ parse-entities@4.0.2:
parse-entities@4.0.2:
dependencies:
'@types/unist': 2.0.11
@@ -15942,6 +17773,7 @@ snapshots:
'@babel/code-frame': 7.26.2
index-to-position: 0.1.2
type-fest: 4.31.0
+ type-fest: 4.31.0
parse-path@7.0.0:
dependencies:
@@ -15951,8 +17783,10 @@ snapshots:
parse-unit@1.0.1: {}
+ parse-url@9.2.0:
parse-url@9.2.0:
dependencies:
+ '@types/parse-path': 7.0.3
'@types/parse-path': 7.0.3
parse-path: 7.0.0
@@ -16030,6 +17864,7 @@ snapshots:
postcss-colormin@7.0.2(postcss@8.4.49):
dependencies:
+ browserslist: 4.24.3
browserslist: 4.24.3
caniuse-api: 3.0.0
colord: 2.9.3
@@ -16038,6 +17873,7 @@ snapshots:
postcss-convert-values@7.0.4(postcss@8.4.49):
dependencies:
+ browserslist: 4.24.3
browserslist: 4.24.3
postcss: 8.4.49
postcss-value-parser: 4.2.0
@@ -16067,6 +17903,7 @@ snapshots:
postcss-merge-rules@7.0.4(postcss@8.4.49):
dependencies:
+ browserslist: 4.24.3
browserslist: 4.24.3
caniuse-api: 3.0.0
cssnano-utils: 5.0.0(postcss@8.4.49)
@@ -16087,6 +17924,7 @@ snapshots:
postcss-minify-params@7.0.2(postcss@8.4.49):
dependencies:
+ browserslist: 4.24.3
browserslist: 4.24.3
cssnano-utils: 5.0.0(postcss@8.4.49)
postcss: 8.4.49
@@ -16129,6 +17967,7 @@ snapshots:
postcss-normalize-unicode@7.0.2(postcss@8.4.49):
dependencies:
+ browserslist: 4.24.3
browserslist: 4.24.3
postcss: 8.4.49
postcss-value-parser: 4.2.0
@@ -16151,6 +17990,7 @@ snapshots:
postcss-reduce-initial@7.0.2(postcss@8.4.49):
dependencies:
+ browserslist: 4.24.3
browserslist: 4.24.3
caniuse-api: 3.0.0
postcss: 8.4.49
@@ -16220,9 +18060,11 @@ snapshots:
pretty-bytes@6.1.1: {}
+ prisma@6.1.0:
prisma@6.1.0:
dependencies:
'@prisma/engines': 6.1.0
+ '@prisma/engines': 6.1.0
optionalDependencies:
fsevents: 2.3.3
@@ -16256,6 +18098,7 @@ snapshots:
qs@6.13.1:
dependencies:
side-channel: 1.1.0
+ side-channel: 1.1.0
queue-microtask@1.2.3: {}
@@ -16263,6 +18106,7 @@ snapshots:
quickselect@2.0.0: {}
+ radix-vue@1.9.11(vue@3.5.13(typescript@5.7.2)):
radix-vue@1.9.11(vue@3.5.13(typescript@5.7.2)):
dependencies:
'@floating-ui/dom': 1.6.12
@@ -16270,6 +18114,7 @@ snapshots:
'@internationalized/date': 3.6.0
'@internationalized/number': 3.6.0
'@tanstack/vue-virtual': 3.11.2(vue@3.5.13(typescript@5.7.2))
+ '@tanstack/vue-virtual': 3.11.2(vue@3.5.13(typescript@5.7.2))
'@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.7.2))
'@vueuse/shared': 10.11.1(vue@3.5.13(typescript@5.7.2))
aria-hidden: 1.2.4
@@ -16301,9 +18146,7 @@ snapshots:
strip-json-comments: 2.0.1
optional: true
- react@18.3.1:
- dependencies:
- loose-envify: 1.4.0
+ react@19.0.0: {}
read-pkg-up@7.0.1:
dependencies:
@@ -16341,7 +18184,9 @@ snapshots:
string_decoder: 1.3.0
util-deprecate: 1.0.2
optional: true
+ optional: true
+ readable-stream@4.6.0:
readable-stream@4.6.0:
dependencies:
abort-controller: 3.0.0
@@ -16370,16 +18215,20 @@ snapshots:
dependencies:
'@eslint-community/regexpp': 4.12.1
+ reflect.getprototypeof@1.0.9:
reflect.getprototypeof@1.0.9:
dependencies:
+ call-bind: 1.0.8
call-bind: 1.0.8
define-properties: 1.2.1
dunder-proto: 1.0.1
- es-abstract: 1.23.8
+ es-abstract: 1.23.7
es-errors: 1.3.0
get-intrinsic: 1.2.6
+ get-intrinsic: 1.2.6
gopd: 1.2.0
which-builtin-type: 1.2.1
+ which-builtin-type: 1.2.1
regenerate-unicode-properties@10.2.0:
dependencies:
@@ -16393,7 +18242,7 @@ snapshots:
dependencies:
'@babel/runtime': 7.26.0
- regex-recursion@5.1.1:
+ regex-recursion@5.0.0:
dependencies:
regex: 5.1.1
regex-utilities: 2.3.0
@@ -16413,6 +18262,7 @@ snapshots:
regexp.prototype.flags@1.5.3:
dependencies:
+ call-bind: 1.0.8
call-bind: 1.0.8
define-properties: 1.2.1
es-errors: 1.3.0
@@ -16441,6 +18291,7 @@ snapshots:
dependencies:
'@types/hast': 3.0.4
'@ungap/structured-clone': 1.2.1
+ '@ungap/structured-clone': 1.2.1
hast-util-is-element: 3.0.0
is-absolute-url: 4.0.1
space-separated-tokens: 2.0.2
@@ -16490,6 +18341,7 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ remark-mdc@3.5.1:
remark-mdc@3.5.1:
dependencies:
'@types/mdast': 4.0.4
@@ -16504,6 +18356,7 @@ snapshots:
micromark-util-character: 2.1.1
micromark-util-types: 2.0.1
parse-entities: 4.0.2
+ parse-entities: 4.0.2
scule: 1.3.0
stringify-entities: 4.0.4
unified: 11.0.5
@@ -16544,9 +18397,11 @@ snapshots:
require-in-the-middle@7.4.0:
dependencies:
+ debug: 4.4.0(supports-color@9.4.0)
debug: 4.4.0(supports-color@9.4.0)
module-details-from-path: 1.0.3
resolve: 1.22.10
+ resolve: 1.22.10
transitivePeerDependencies:
- supports-color
@@ -16560,8 +18415,10 @@ snapshots:
dependencies:
protocol-buffers-schema: 3.6.0
+ resolve@1.22.10:
resolve@1.22.10:
dependencies:
+ is-core-module: 2.16.1
is-core-module: 2.16.1
path-parse: 1.0.7
supports-preserve-symlinks-flag: 1.0.0
@@ -16572,13 +18429,15 @@ snapshots:
rfdc@1.4.1: {}
+ rimraf@5.0.10:
rimraf@5.0.10:
dependencies:
glob: 10.4.5
+ glob: 10.4.5
robust-predicates@3.0.2: {}
- rollup-plugin-visualizer@5.13.1(rollup@4.29.1):
+ rollup-plugin-visualizer@5.12.0(rollup@4.29.1):
dependencies:
open: 8.4.2
picomatch: 4.0.2
@@ -16586,15 +18445,36 @@ snapshots:
yargs: 17.7.2
optionalDependencies:
rollup: 4.29.1
+ rollup: 4.29.1
rollup@2.79.2:
optionalDependencies:
fsevents: 2.3.3
+ rollup@4.29.1:
rollup@4.29.1:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
+ '@rollup/rollup-android-arm-eabi': 4.29.1
+ '@rollup/rollup-android-arm64': 4.29.1
+ '@rollup/rollup-darwin-arm64': 4.29.1
+ '@rollup/rollup-darwin-x64': 4.29.1
+ '@rollup/rollup-freebsd-arm64': 4.29.1
+ '@rollup/rollup-freebsd-x64': 4.29.1
+ '@rollup/rollup-linux-arm-gnueabihf': 4.29.1
+ '@rollup/rollup-linux-arm-musleabihf': 4.29.1
+ '@rollup/rollup-linux-arm64-gnu': 4.29.1
+ '@rollup/rollup-linux-arm64-musl': 4.29.1
+ '@rollup/rollup-linux-loongarch64-gnu': 4.29.1
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.29.1
+ '@rollup/rollup-linux-riscv64-gnu': 4.29.1
+ '@rollup/rollup-linux-s390x-gnu': 4.29.1
+ '@rollup/rollup-linux-x64-gnu': 4.29.1
+ '@rollup/rollup-linux-x64-musl': 4.29.1
+ '@rollup/rollup-win32-arm64-msvc': 4.29.1
+ '@rollup/rollup-win32-ia32-msvc': 4.29.1
+ '@rollup/rollup-win32-x64-msvc': 4.29.1
'@rollup/rollup-android-arm-eabi': 4.29.1
'@rollup/rollup-android-arm64': 4.29.1
'@rollup/rollup-darwin-arm64': 4.29.1
@@ -16624,8 +18504,12 @@ snapshots:
rw@1.3.3: {}
+ safe-array-concat@1.1.3:
safe-array-concat@1.1.3:
dependencies:
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ get-intrinsic: 1.2.6
call-bind: 1.0.8
call-bound: 1.0.3
get-intrinsic: 1.2.6
@@ -16636,11 +18520,6 @@ snapshots:
safe-buffer@5.2.1: {}
- safe-push-apply@1.0.0:
- dependencies:
- es-errors: 1.3.0
- isarray: 2.0.5
-
safe-regex-test@1.1.0:
dependencies:
call-bound: 1.0.3
@@ -16649,6 +18528,7 @@ snapshots:
safer-buffer@2.1.2: {}
+ sanitize-html@2.14.0:
sanitize-html@2.14.0:
dependencies:
deepmerge: 4.3.1
@@ -16671,6 +18551,13 @@ snapshots:
ajv-formats: 2.1.1(ajv@8.17.1)
ajv-keywords: 5.1.0(ajv@8.17.1)
+ schema-utils@4.3.0:
+ dependencies:
+ '@types/json-schema': 7.0.15
+ ajv: 8.17.1
+ ajv-formats: 2.1.1(ajv@8.17.1)
+ ajv-keywords: 5.1.0(ajv@8.17.1)
+
scslre@0.3.0:
dependencies:
'@eslint-community/regexpp': 4.12.1
@@ -16726,6 +18613,7 @@ snapshots:
es-errors: 1.3.0
function-bind: 1.1.2
get-intrinsic: 1.2.6
+ get-intrinsic: 1.2.6
gopd: 1.2.0
has-property-descriptors: 1.0.2
@@ -16738,8 +18626,10 @@ snapshots:
setprototypeof@1.2.0: {}
+ shadcn-nuxt@0.10.4(magicast@0.3.5)(rollup@4.29.1):
shadcn-nuxt@0.10.4(magicast@0.3.5)(rollup@4.29.1):
dependencies:
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
'@oxc-parser/wasm': 0.1.0
transitivePeerDependencies:
@@ -16767,8 +18657,14 @@ snapshots:
shell-quote@1.8.2: {}
+ shiki@1.24.4:
shiki@1.24.4:
dependencies:
+ '@shikijs/core': 1.24.4
+ '@shikijs/engine-javascript': 1.24.4
+ '@shikijs/engine-oniguruma': 1.24.4
+ '@shikijs/types': 1.24.4
+ '@shikijs/vscode-textmate': 9.3.1
'@shikijs/core': 1.24.4
'@shikijs/engine-javascript': 1.24.4
'@shikijs/engine-oniguruma': 1.24.4
@@ -16779,9 +18675,33 @@ snapshots:
shimmer@1.2.1: {}
side-channel-list@1.0.0:
+ side-channel-list@1.0.0:
+ dependencies:
+ es-errors: 1.3.0
+ object-inspect: 1.13.3
+
+ side-channel-map@1.0.1:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.6
+ object-inspect: 1.13.3
+
+ side-channel-weakmap@1.0.2:
+ dependencies:
+ call-bound: 1.0.3
+ es-errors: 1.3.0
+ get-intrinsic: 1.2.6
+ object-inspect: 1.13.3
+ side-channel-map: 1.0.1
+
+ side-channel@1.1.0:
dependencies:
es-errors: 1.3.0
object-inspect: 1.13.3
+ side-channel-list: 1.0.0
+ side-channel-map: 1.0.1
+ side-channel-weakmap: 1.0.2
side-channel-map@1.0.1:
dependencies:
@@ -16825,6 +18745,7 @@ snapshots:
'@kwsites/file-exists': 1.1.1
'@kwsites/promise-deferred': 1.1.1
debug: 4.4.0(supports-color@9.4.0)
+ debug: 4.4.0(supports-color@9.4.0)
transitivePeerDependencies:
- supports-color
@@ -16865,6 +18786,7 @@ snapshots:
dependencies:
dot-case: 3.0.4
tslib: 2.4.1
+ tslib: 2.4.1
snakecase-keys@5.4.4:
dependencies:
@@ -16876,6 +18798,7 @@ snapshots:
dependencies:
'@socket.io/component-emitter': 3.1.2
debug: 4.3.7
+ debug: 4.3.7
engine.io-client: 6.6.2
socket.io-parser: 4.2.4
transitivePeerDependencies:
@@ -16887,6 +18810,7 @@ snapshots:
dependencies:
'@socket.io/component-emitter': 3.1.2
debug: 4.3.7
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -16947,11 +18871,13 @@ snapshots:
std-env@3.8.0: {}
+ streamx@2.21.1:
streamx@2.21.1:
dependencies:
fast-fifo: 1.3.2
queue-tick: 1.0.1
text-decoder: 1.2.3
+ text-decoder: 1.2.3
optionalDependencies:
bare-events: 2.5.0
@@ -16967,34 +18893,48 @@ snapshots:
emoji-regex: 9.2.2
strip-ansi: 7.1.0
+ string.prototype.matchall@4.0.12:
string.prototype.matchall@4.0.12:
dependencies:
+ call-bind: 1.0.8
+ call-bound: 1.0.3
call-bind: 1.0.8
call-bound: 1.0.3
define-properties: 1.2.1
- es-abstract: 1.23.8
+ es-abstract: 1.23.7
es-errors: 1.3.0
es-object-atoms: 1.0.0
get-intrinsic: 1.2.6
+ get-intrinsic: 1.2.6
gopd: 1.2.0
has-symbols: 1.1.0
internal-slot: 1.1.0
+ internal-slot: 1.1.0
regexp.prototype.flags: 1.5.3
set-function-name: 2.0.2
side-channel: 1.1.0
+ side-channel: 1.1.0
+ string.prototype.trim@1.2.10:
string.prototype.trim@1.2.10:
dependencies:
+ call-bind: 1.0.8
+ call-bound: 1.0.3
+ define-data-property: 1.1.4
call-bind: 1.0.8
call-bound: 1.0.3
define-data-property: 1.1.4
define-properties: 1.2.1
- es-abstract: 1.23.8
+ es-abstract: 1.23.7
es-object-atoms: 1.0.0
has-property-descriptors: 1.0.2
+ has-property-descriptors: 1.0.2
+ string.prototype.trimend@1.0.9:
string.prototype.trimend@1.0.9:
dependencies:
+ call-bind: 1.0.8
+ call-bound: 1.0.3
call-bind: 1.0.8
call-bound: 1.0.3
define-properties: 1.2.1
@@ -17002,6 +18942,7 @@ snapshots:
string.prototype.trimstart@1.0.8:
dependencies:
+ call-bind: 1.0.8
call-bind: 1.0.8
define-properties: 1.2.1
es-object-atoms: 1.0.0
@@ -17056,6 +18997,7 @@ snapshots:
stylehacks@7.0.4(postcss@8.4.49):
dependencies:
+ browserslist: 4.24.3
browserslist: 4.24.3
postcss: 8.4.49
postcss-selector-parser: 6.1.2
@@ -17066,6 +19008,7 @@ snapshots:
dependencies:
kdbush: 3.0.0
+ superjson@2.2.2:
superjson@2.2.2:
dependencies:
copy-anything: 3.0.5
@@ -17103,11 +19046,11 @@ snapshots:
csso: 5.0.5
picocolors: 1.1.1
- swr@2.3.0(react@18.3.1):
+ swr@2.3.0(react@19.0.0):
dependencies:
dequal: 2.0.3
- react: 18.3.1
- use-sync-external-store: 1.4.0(react@18.3.1)
+ react: 19.0.0
+ use-sync-external-store: 1.4.0(react@19.0.0)
synckit@0.6.2:
dependencies:
@@ -17120,6 +19063,7 @@ snapshots:
system-architecture@0.1.0: {}
+ tailwind-merge@2.6.0: {}
tailwind-merge@2.6.0: {}
tapable@2.2.1: {}
@@ -17155,6 +19099,7 @@ snapshots:
b4a: 1.6.7
fast-fifo: 1.3.2
streamx: 2.21.1
+ streamx: 2.21.1
tar@6.2.1:
dependencies:
@@ -17174,6 +19119,15 @@ snapshots:
mkdirp: 3.0.1
yallist: 5.0.0
+ tar@7.4.3:
+ dependencies:
+ '@isaacs/fs-minipass': 4.0.1
+ chownr: 3.0.0
+ minipass: 7.1.2
+ minizlib: 3.0.1
+ mkdirp: 3.0.1
+ yallist: 5.0.0
+
temp-dir@2.0.0: {}
tempy@0.6.0:
@@ -17185,17 +19139,20 @@ snapshots:
term-size@2.2.1: {}
- terser-webpack-plugin@5.3.11(esbuild@0.24.2)(webpack@5.96.1(esbuild@0.24.2)):
+ terser-webpack-plugin@5.3.11(esbuild@0.24.2)(webpack@5.97.1(esbuild@0.24.2)):
dependencies:
'@jridgewell/trace-mapping': 0.3.25
jest-worker: 27.5.1
schema-utils: 4.3.0
+ schema-utils: 4.3.0
serialize-javascript: 6.0.2
terser: 5.37.0
- webpack: 5.96.1(esbuild@0.24.2)
+ webpack: 5.97.1(esbuild@0.24.2)
optionalDependencies:
esbuild: 0.24.2
+ esbuild: 0.24.2
+ terser@5.37.0:
terser@5.37.0:
dependencies:
'@jridgewell/source-map': 0.3.6
@@ -17203,6 +19160,9 @@ snapshots:
commander: 2.20.3
source-map-support: 0.5.21
+ text-decoder@1.2.3:
+ dependencies:
+ b4a: 1.6.7
text-decoder@1.2.3:
dependencies:
b4a: 1.6.7
@@ -17296,42 +19256,58 @@ snapshots:
type-fest@2.19.0: {}
+ type-fest@4.31.0: {}
type-fest@4.31.0: {}
type-level-regexp@0.1.17: {}
+ typed-array-buffer@1.0.3:
typed-array-buffer@1.0.3:
dependencies:
+ call-bound: 1.0.3
call-bound: 1.0.3
es-errors: 1.3.0
is-typed-array: 1.1.15
+ is-typed-array: 1.1.15
+ typed-array-byte-length@1.0.3:
typed-array-byte-length@1.0.3:
dependencies:
+ call-bind: 1.0.8
call-bind: 1.0.8
for-each: 0.3.3
gopd: 1.2.0
has-proto: 1.2.0
is-typed-array: 1.1.15
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
+ typed-array-byte-offset@1.0.4:
typed-array-byte-offset@1.0.4:
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.8
+ call-bind: 1.0.8
for-each: 0.3.3
gopd: 1.2.0
has-proto: 1.2.0
is-typed-array: 1.1.15
reflect.getprototypeof: 1.0.9
+ has-proto: 1.2.0
+ is-typed-array: 1.1.15
+ reflect.getprototypeof: 1.0.9
typed-array-length@1.0.7:
dependencies:
+ call-bind: 1.0.8
call-bind: 1.0.8
for-each: 0.3.3
gopd: 1.2.0
is-typed-array: 1.1.15
+ is-typed-array: 1.1.15
possible-typed-array-names: 1.0.0
reflect.getprototypeof: 1.0.9
+ reflect.getprototypeof: 1.0.9
typescript@5.7.2: {}
@@ -17339,12 +19315,16 @@ snapshots:
ultrahtml@1.5.3: {}
+ unbox-primitive@1.1.0:
unbox-primitive@1.1.0:
dependencies:
+ call-bound: 1.0.3
+ has-bigints: 1.1.0
call-bound: 1.0.3
has-bigints: 1.1.0
has-symbols: 1.1.0
which-boxed-primitive: 1.1.1
+ which-boxed-primitive: 1.1.1
unconfig@0.5.5:
dependencies:
@@ -17362,27 +19342,40 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ unconfig@0.6.0:
+ dependencies:
+ '@antfu/utils': 0.7.10
+ defu: 6.1.4
+ importx: 0.5.1
+ transitivePeerDependencies:
+ - supports-color
+
uncrypto@0.1.3: {}
+ unctx@2.4.1:
unctx@2.4.1:
dependencies:
acorn: 8.14.0
estree-walker: 3.0.3
magic-string: 0.30.17
- unplugin: 2.1.2
+ unplugin: 2.1.0
undici-types@6.20.0: {}
unenv@1.10.0:
dependencies:
- consola: 3.3.3
+ consola: 3.3.2
defu: 6.1.4
mime: 3.0.0
node-fetch-native: 1.6.4
pathe: 1.1.2
+ unhead@1.11.14:
unhead@1.11.14:
dependencies:
+ '@unhead/dom': 1.11.14
+ '@unhead/schema': 1.11.14
+ '@unhead/shared': 1.11.14
'@unhead/dom': 1.11.14
'@unhead/schema': 1.11.14
'@unhead/shared': 1.11.14
@@ -17423,20 +19416,26 @@ snapshots:
trough: 2.2.0
vfile: 6.0.3
+ unifont@0.1.7:
unifont@0.1.7:
dependencies:
+ css-tree: 3.1.0
css-tree: 3.1.0
ohash: 1.1.4
+ unimport@3.14.5(rollup@4.29.1):
unimport@3.14.5(rollup@4.29.1):
dependencies:
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
acorn: 8.14.0
escape-string-regexp: 5.0.0
estree-walker: 3.0.3
fast-glob: 3.3.2
+ fast-glob: 3.3.2
local-pkg: 0.5.1
magic-string: 0.30.17
+ magic-string: 0.30.17
mlly: 1.7.3
pathe: 1.1.2
picomatch: 4.0.2
@@ -17486,18 +19485,20 @@ snapshots:
universalify@2.0.1: {}
- unocss-preset-animations@1.1.0(@unocss/preset-wind@0.65.1)(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))):
+ unocss-preset-animations@1.1.0(@unocss/preset-wind@0.65.1)(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))):
dependencies:
'@unocss/preset-wind': 0.65.1
- unocss: 0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ unocss: 0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
- unocss-preset-shadcn@0.3.1(unocss-preset-animations@1.1.0(@unocss/preset-wind@0.65.1)(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))))(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))):
+ unocss-preset-shadcn@0.3.1(unocss-preset-animations@1.1.0(@unocss/preset-wind@0.65.1)(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))))(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))):
dependencies:
- unocss: 0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
- unocss-preset-animations: 1.1.0(@unocss/preset-wind@0.65.1)(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)))
+ unocss: 0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ unocss-preset-animations: 1.1.0(@unocss/preset-wind@0.65.1)(unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)))
- unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)):
+ unocss@0.65.1(@unocss/webpack@0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2)))(postcss@8.4.49)(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2)):
dependencies:
+ '@unocss/astro': 0.65.1(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ '@unocss/cli': 0.65.1(rollup@4.29.1)
'@unocss/astro': 0.65.1(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
'@unocss/cli': 0.65.1(rollup@4.29.1)
'@unocss/core': 0.65.1
@@ -17515,8 +19516,9 @@ snapshots:
'@unocss/transformer-directives': 0.65.1
'@unocss/transformer-variant-group': 0.65.1
'@unocss/vite': 0.65.1(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
+ '@unocss/vite': 0.65.1(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue@3.5.13(typescript@5.7.2))
optionalDependencies:
- '@unocss/webpack': 0.65.1(rollup@4.29.1)(webpack@5.96.1(esbuild@0.24.2))
+ '@unocss/webpack': 0.65.1(rollup@4.29.1)(webpack@5.97.1(esbuild@0.24.2))
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
transitivePeerDependencies:
- postcss
@@ -17524,17 +19526,21 @@ snapshots:
- supports-color
- vue
+ unplugin-vue-router@0.10.9(rollup@4.29.1)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2)):
unplugin-vue-router@0.10.9(rollup@4.29.1)(vue-router@4.5.0(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2)):
dependencies:
'@babel/types': 7.26.3
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
'@vue-macros/common': 1.15.1(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
+ '@vue-macros/common': 1.15.1(rollup@4.29.1)(vue@3.5.13(typescript@5.7.2))
ast-walker-scope: 0.6.2
chokidar: 3.6.0
fast-glob: 3.3.2
json5: 2.2.3
local-pkg: 0.5.1
magic-string: 0.30.17
+ magic-string: 0.30.17
mlly: 1.7.3
pathe: 1.1.2
scule: 1.3.0
@@ -17563,12 +19569,12 @@ snapshots:
acorn: 8.14.0
webpack-virtual-modules: 0.6.2
- unplugin@2.1.2:
+ unplugin@2.1.0:
dependencies:
acorn: 8.14.0
webpack-virtual-modules: 0.6.2
- unstorage@1.14.4(@netlify/blobs@8.1.0)(db0@0.2.1)(ioredis@5.4.2):
+ unstorage@1.14.3(@netlify/blobs@8.1.0)(aws4fetch@1.0.20)(db0@0.2.1)(ioredis@5.4.2):
dependencies:
anymatch: 3.1.3
chokidar: 3.6.0
@@ -17580,30 +19586,38 @@ snapshots:
ufo: 1.5.4
optionalDependencies:
'@netlify/blobs': 8.1.0
+ aws4fetch: 1.0.20
db0: 0.2.1
ioredis: 5.4.2
untun@0.1.3:
dependencies:
citty: 0.1.6
- consola: 3.3.3
+ consola: 3.3.2
pathe: 1.1.2
+ untyped@1.5.2:
untyped@1.5.2:
dependencies:
'@babel/core': 7.26.0
'@babel/standalone': 7.26.4
+ '@babel/standalone': 7.26.4
'@babel/types': 7.26.3
citty: 0.1.6
+ citty: 0.1.6
defu: 6.1.4
jiti: 2.4.2
knitwork: 1.2.0
+ jiti: 2.4.2
+ knitwork: 1.2.0
scule: 1.3.0
transitivePeerDependencies:
- supports-color
unwasm@0.3.9:
dependencies:
+ knitwork: 1.2.0
+ magic-string: 0.30.17
knitwork: 1.2.0
magic-string: 0.30.17
mlly: 1.7.3
@@ -17613,8 +19627,10 @@ snapshots:
upath@1.2.0: {}
+ update-browserslist-db@1.1.1(browserslist@4.24.3):
update-browserslist-db@1.1.1(browserslist@4.24.3):
dependencies:
+ browserslist: 4.24.3
browserslist: 4.24.3
escalade: 3.2.0
picocolors: 1.1.1
@@ -17629,9 +19645,9 @@ snapshots:
urlpattern-polyfill@8.0.2: {}
- use-sync-external-store@1.4.0(react@18.3.1):
+ use-sync-external-store@1.4.0(react@19.0.0):
dependencies:
- react: 18.3.1
+ react: 19.0.0
util-deprecate@1.0.2: {}
@@ -17653,16 +19669,21 @@ snapshots:
spdx-correct: 3.2.0
spdx-expression-parse: 3.0.1
+ vaul-vue@0.2.0(radix-vue@1.9.11(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2)):
vaul-vue@0.2.0(radix-vue@1.9.11(vue@3.5.13(typescript@5.7.2)))(vue@3.5.13(typescript@5.7.2)):
dependencies:
'@vueuse/core': 10.11.1(vue@3.5.13(typescript@5.7.2))
radix-vue: 1.9.11(vue@3.5.13(typescript@5.7.2))
+ radix-vue: 1.9.11(vue@3.5.13(typescript@5.7.2))
vue: 3.5.13(typescript@5.7.2)
transitivePeerDependencies:
- '@vue/composition-api'
+ vee-validate@4.15.0(vue@3.5.13(typescript@5.7.2)):
vee-validate@4.15.0(vue@3.5.13(typescript@5.7.2)):
dependencies:
+ '@vue/devtools-api': 7.6.8
+ type-fest: 4.31.0
'@vue/devtools-api': 7.6.8
type-fest: 4.31.0
vue: 3.5.13(typescript@5.7.2)
@@ -17682,17 +19703,21 @@ snapshots:
'@types/unist': 3.0.3
vfile-message: 4.0.2
+ vite-hot-client@0.2.4(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)):
vite-hot-client@0.2.4(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)):
dependencies:
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
+ vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
+ vite-node@2.1.8(@types/node@22.10.2)(terser@5.37.0):
vite-node@2.1.8(@types/node@22.10.2)(terser@5.37.0):
dependencies:
cac: 6.7.14
debug: 4.4.0(supports-color@9.4.0)
- es-module-lexer: 1.6.0
+ es-module-lexer: 1.5.4
pathe: 1.1.2
vite: 5.4.11(@types/node@22.10.2)(terser@5.37.0)
+ vite: 5.4.11(@types/node@22.10.2)(terser@5.37.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -17704,6 +19729,7 @@ snapshots:
- supports-color
- terser
+ vite-plugin-checker@0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2)):
vite-plugin-checker@0.8.0(eslint@9.17.0(jiti@2.4.2))(optionator@0.9.4)(typescript@5.7.2)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(vue-tsc@2.2.0(typescript@5.7.2)):
dependencies:
'@babel/code-frame': 7.26.2
@@ -17717,21 +19743,27 @@ snapshots:
strip-ansi: 6.0.1
tiny-invariant: 1.3.3
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
+ vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
vscode-languageclient: 7.0.0
vscode-languageserver: 7.0.0
vscode-languageserver-textdocument: 1.0.12
vscode-uri: 3.0.8
optionalDependencies:
+ eslint: 9.17.0(jiti@2.4.2)
eslint: 9.17.0(jiti@2.4.2)
optionator: 0.9.4
typescript: 5.7.2
vue-tsc: 2.2.0(typescript@5.7.2)
+ vue-tsc: 2.2.0(typescript@5.7.2)
+ vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.0(magicast@0.3.5)(rollup@4.29.1))(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)):
vite-plugin-inspect@0.8.9(@nuxt/kit@3.15.0(magicast@0.3.5)(rollup@4.29.1))(rollup@4.29.1)(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)):
dependencies:
'@antfu/utils': 0.7.10
'@rollup/pluginutils': 5.1.4(rollup@4.29.1)
debug: 4.4.0(supports-color@9.4.0)
+ '@rollup/pluginutils': 5.1.4(rollup@4.29.1)
+ debug: 4.4.0(supports-color@9.4.0)
error-stack-parser-es: 0.1.5
fs-extra: 11.2.0
open: 10.1.0
@@ -17739,23 +19771,27 @@ snapshots:
picocolors: 1.1.1
sirv: 3.0.0
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
+ vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
optionalDependencies:
'@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
+ '@nuxt/kit': 3.15.0(magicast@0.3.5)(rollup@4.29.1)
transitivePeerDependencies:
- rollup
- supports-color
- vite-plugin-pwa@0.21.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(workbox-build@7.1.1)(workbox-window@7.1.0):
+ vite-plugin-pwa@0.21.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1))(workbox-build@7.3.0)(workbox-window@7.3.0):
dependencies:
+ debug: 4.4.0(supports-color@9.4.0)
debug: 4.4.0(supports-color@9.4.0)
pretty-bytes: 6.1.1
tinyglobby: 0.2.10
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
- workbox-build: 7.1.1
- workbox-window: 7.1.0
+ workbox-build: 7.3.0
+ workbox-window: 7.3.0
transitivePeerDependencies:
- supports-color
+ vite-plugin-vue-inspector@5.3.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)):
vite-plugin-vue-inspector@5.3.1(vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)):
dependencies:
'@babel/core': 7.26.0
@@ -17768,17 +19804,36 @@ snapshots:
kolorist: 1.8.0
magic-string: 0.30.17
vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
+ magic-string: 0.30.17
+ vite: 6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1)
transitivePeerDependencies:
- supports-color
+ vite@5.4.11(@types/node@22.10.2)(terser@5.37.0):
vite@5.4.11(@types/node@22.10.2)(terser@5.37.0):
dependencies:
esbuild: 0.21.5
postcss: 8.4.49
rollup: 4.29.1
+ rollup: 4.29.1
+ optionalDependencies:
+ '@types/node': 22.10.2
+ '@types/node': 22.10.2
+ fsevents: 2.3.3
+ terser: 5.37.0
+
+ vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1):
+ dependencies:
+ esbuild: 0.24.2
+ postcss: 8.4.49
+ rollup: 4.29.1
optionalDependencies:
'@types/node': 22.10.2
fsevents: 2.3.3
+ jiti: 2.4.2
+ terser: 5.37.0
+ tsx: 4.19.2
+ yaml: 2.6.1
terser: 5.37.0
vite@6.0.6(@types/node@22.10.2)(jiti@2.4.2)(terser@5.37.0)(tsx@4.19.2)(yaml@2.6.1):
@@ -17827,13 +19882,13 @@ snapshots:
dependencies:
ufo: 1.5.4
- vue-clerk@0.9.11(@clerk/backend@1.21.4(react@18.3.1))(react@18.3.1)(vue@3.5.13(typescript@5.7.2)):
+ vue-clerk@0.9.11(@clerk/backend@1.21.4(react@19.0.0))(react@19.0.0)(vue@3.5.13(typescript@5.7.2)):
dependencies:
- '@clerk/shared': 2.20.4(react@18.3.1)
+ '@clerk/shared': 2.20.4(react@19.0.0)
'@clerk/types': 4.40.0
vue: 3.5.13(typescript@5.7.2)
optionalDependencies:
- '@clerk/backend': 1.21.4(react@18.3.1)
+ '@clerk/backend': 1.21.4(react@19.0.0)
transitivePeerDependencies:
- react
- react-dom
@@ -17844,8 +19899,11 @@ snapshots:
vue-devtools-stub@0.1.0: {}
+ vue-eslint-parser@9.4.3(eslint@9.17.0(jiti@2.4.2)):
vue-eslint-parser@9.4.3(eslint@9.17.0(jiti@2.4.2)):
dependencies:
+ debug: 4.4.0(supports-color@9.4.0)
+ eslint: 9.17.0(jiti@2.4.2)
debug: 4.4.0(supports-color@9.4.0)
eslint: 9.17.0(jiti@2.4.2)
eslint-scope: 7.2.2
@@ -17870,8 +19928,11 @@ snapshots:
dependencies:
vue: 3.5.13(typescript@5.7.2)
+ vue-tsc@2.2.0(typescript@5.7.2):
vue-tsc@2.2.0(typescript@5.7.2):
dependencies:
+ '@volar/typescript': 2.4.11
+ '@vue/language-core': 2.2.0(typescript@5.7.2)
'@volar/typescript': 2.4.11
'@vue/language-core': 2.2.0(typescript@5.7.2)
typescript: 5.7.2
@@ -17905,7 +19966,7 @@ snapshots:
webpack-virtual-modules@0.6.2: {}
- webpack@5.96.1(esbuild@0.24.2):
+ webpack@5.97.1(esbuild@0.24.2):
dependencies:
'@types/eslint-scope': 3.7.7
'@types/estree': 1.0.6
@@ -17914,9 +19975,10 @@ snapshots:
'@webassemblyjs/wasm-parser': 1.14.1
acorn: 8.14.0
browserslist: 4.24.3
+ browserslist: 4.24.3
chrome-trace-event: 1.0.4
enhanced-resolve: 5.18.0
- es-module-lexer: 1.6.0
+ es-module-lexer: 1.5.4
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -17927,7 +19989,7 @@ snapshots:
neo-async: 2.6.2
schema-utils: 3.3.0
tapable: 2.2.1
- terser-webpack-plugin: 5.3.11(esbuild@0.24.2)(webpack@5.96.1(esbuild@0.24.2))
+ terser-webpack-plugin: 5.3.11(esbuild@0.24.2)(webpack@5.97.1(esbuild@0.24.2))
watchpack: 2.4.2
webpack-sources: 3.2.3
transitivePeerDependencies:
@@ -17946,6 +20008,7 @@ snapshots:
tr46: 1.0.1
webidl-conversions: 4.0.2
+ which-boxed-primitive@1.1.1:
which-boxed-primitive@1.1.1:
dependencies:
is-bigint: 1.1.0
@@ -17953,22 +20016,35 @@ snapshots:
is-number-object: 1.1.1
is-string: 1.1.1
is-symbol: 1.1.1
+ is-boolean-object: 1.2.1
+ is-number-object: 1.1.1
+ is-string: 1.1.1
+ is-symbol: 1.1.1
+ which-builtin-type@1.2.1:
which-builtin-type@1.2.1:
dependencies:
+ call-bound: 1.0.3
+ function.prototype.name: 1.1.8
call-bound: 1.0.3
function.prototype.name: 1.1.8
has-tostringtag: 1.0.2
is-async-function: 2.0.0
is-date-object: 1.1.0
is-finalizationregistry: 1.1.1
+ is-date-object: 1.1.0
+ is-finalizationregistry: 1.1.1
is-generator-function: 1.0.10
is-regex: 1.2.1
is-weakref: 1.1.0
+ is-regex: 1.2.1
+ is-weakref: 1.1.0
isarray: 2.0.5
which-boxed-primitive: 1.1.1
+ which-boxed-primitive: 1.1.1
which-collection: 1.0.2
which-typed-array: 1.1.18
+ which-typed-array: 1.1.18
which-collection@1.0.2:
dependencies:
@@ -17976,12 +20052,16 @@ snapshots:
is-set: 2.0.3
is-weakmap: 2.0.2
is-weakset: 2.0.4
+ is-weakset: 2.0.4
+ which-typed-array@1.1.18:
which-typed-array@1.1.18:
dependencies:
available-typed-arrays: 1.0.7
call-bind: 1.0.8
call-bound: 1.0.3
+ call-bind: 1.0.8
+ call-bound: 1.0.3
for-each: 0.3.3
gopd: 1.2.0
has-tostringtag: 1.0.2
@@ -18000,16 +20080,16 @@ snapshots:
word-wrap@1.2.5: {}
- workbox-background-sync@7.1.0:
+ workbox-background-sync@7.3.0:
dependencies:
idb: 7.1.1
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-broadcast-update@7.1.0:
+ workbox-broadcast-update@7.3.0:
dependencies:
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-build@7.1.1:
+ workbox-build@7.3.0:
dependencies:
'@apideck/better-ajv-errors': 0.3.6(ajv@8.17.1)
'@babel/core': 7.26.0
@@ -18017,6 +20097,7 @@ snapshots:
'@babel/runtime': 7.26.0
'@rollup/plugin-babel': 5.3.1(@babel/core@7.26.0)(rollup@2.79.2)
'@rollup/plugin-node-resolve': 15.3.1(rollup@2.79.2)
+ '@rollup/plugin-node-resolve': 15.3.1(rollup@2.79.2)
'@rollup/plugin-replace': 2.4.2(rollup@2.79.2)
'@rollup/plugin-terser': 0.4.4(rollup@2.79.2)
'@surma/rollup-plugin-off-main-thread': 2.2.3
@@ -18033,85 +20114,85 @@ snapshots:
strip-comments: 2.0.1
tempy: 0.6.0
upath: 1.2.0
- workbox-background-sync: 7.1.0
- workbox-broadcast-update: 7.1.0
- workbox-cacheable-response: 7.1.0
- workbox-core: 7.1.0
- workbox-expiration: 7.1.0
- workbox-google-analytics: 7.1.0
- workbox-navigation-preload: 7.1.0
- workbox-precaching: 7.1.0
- workbox-range-requests: 7.1.0
- workbox-recipes: 7.1.0
- workbox-routing: 7.1.0
- workbox-strategies: 7.1.0
- workbox-streams: 7.1.0
- workbox-sw: 7.1.0
- workbox-window: 7.1.0
+ workbox-background-sync: 7.3.0
+ workbox-broadcast-update: 7.3.0
+ workbox-cacheable-response: 7.3.0
+ workbox-core: 7.3.0
+ workbox-expiration: 7.3.0
+ workbox-google-analytics: 7.3.0
+ workbox-navigation-preload: 7.3.0
+ workbox-precaching: 7.3.0
+ workbox-range-requests: 7.3.0
+ workbox-recipes: 7.3.0
+ workbox-routing: 7.3.0
+ workbox-strategies: 7.3.0
+ workbox-streams: 7.3.0
+ workbox-sw: 7.3.0
+ workbox-window: 7.3.0
transitivePeerDependencies:
- '@types/babel__core'
- supports-color
- workbox-cacheable-response@7.1.0:
+ workbox-cacheable-response@7.3.0:
dependencies:
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-core@7.1.0: {}
+ workbox-core@7.3.0: {}
- workbox-expiration@7.1.0:
+ workbox-expiration@7.3.0:
dependencies:
idb: 7.1.1
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-google-analytics@7.1.0:
+ workbox-google-analytics@7.3.0:
dependencies:
- workbox-background-sync: 7.1.0
- workbox-core: 7.1.0
- workbox-routing: 7.1.0
- workbox-strategies: 7.1.0
+ workbox-background-sync: 7.3.0
+ workbox-core: 7.3.0
+ workbox-routing: 7.3.0
+ workbox-strategies: 7.3.0
- workbox-navigation-preload@7.1.0:
+ workbox-navigation-preload@7.3.0:
dependencies:
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-precaching@7.1.0:
+ workbox-precaching@7.3.0:
dependencies:
- workbox-core: 7.1.0
- workbox-routing: 7.1.0
- workbox-strategies: 7.1.0
+ workbox-core: 7.3.0
+ workbox-routing: 7.3.0
+ workbox-strategies: 7.3.0
- workbox-range-requests@7.1.0:
+ workbox-range-requests@7.3.0:
dependencies:
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-recipes@7.1.0:
+ workbox-recipes@7.3.0:
dependencies:
- workbox-cacheable-response: 7.1.0
- workbox-core: 7.1.0
- workbox-expiration: 7.1.0
- workbox-precaching: 7.1.0
- workbox-routing: 7.1.0
- workbox-strategies: 7.1.0
+ workbox-cacheable-response: 7.3.0
+ workbox-core: 7.3.0
+ workbox-expiration: 7.3.0
+ workbox-precaching: 7.3.0
+ workbox-routing: 7.3.0
+ workbox-strategies: 7.3.0
- workbox-routing@7.1.0:
+ workbox-routing@7.3.0:
dependencies:
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-strategies@7.1.0:
+ workbox-strategies@7.3.0:
dependencies:
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
- workbox-streams@7.1.0:
+ workbox-streams@7.3.0:
dependencies:
- workbox-core: 7.1.0
- workbox-routing: 7.1.0
+ workbox-core: 7.3.0
+ workbox-routing: 7.3.0
- workbox-sw@7.1.0: {}
+ workbox-sw@7.3.0: {}
- workbox-window@7.1.0:
+ workbox-window@7.3.0:
dependencies:
'@types/trusted-types': 2.0.7
- workbox-core: 7.1.0
+ workbox-core: 7.3.0
wrap-ansi@7.0.0:
dependencies:
@@ -18151,6 +20232,8 @@ snapshots:
yallist@5.0.0: {}
+ yallist@5.0.0: {}
+
yaml-ast-parser@0.0.43: {}
yaml-eslint-parser@1.2.3:
@@ -18184,7 +20267,9 @@ snapshots:
archiver-utils: 5.0.2
compress-commons: 6.0.2
readable-stream: 4.6.0
+ readable-stream: 4.6.0
zod@3.24.1: {}
+ zod@3.24.1: {}
zwitch@2.0.4: {}
diff --git a/renew-env.sh b/renew-env.sh
new file mode 100644
index 00000000..717cb891
--- /dev/null
+++ b/renew-env.sh
@@ -0,0 +1,2 @@
+#! /bin/bash
+infisical export --format=dotenv-export --env=dev > .env
diff --git a/server/api/files/clubRecords.post.ts b/server/api/files/clubRecords.post.ts
new file mode 100644
index 00000000..15e01805
--- /dev/null
+++ b/server/api/files/clubRecords.post.ts
@@ -0,0 +1,26 @@
+import { PrismaClient } from '@prisma/client'
+
+const prisma = new PrismaClient()
+
+export default eventHandler(async (event) => {
+ const { auth } = event.context
+
+ if ((auth?.userId) == null) {
+ setResponseStatus(event, 403)
+ }
+
+ return readBody(event)
+ .then(async (body) => {
+ const { clubId, collection } = body
+ const records = await prisma.fileUploadRecord.findMany({
+ where: {
+ clubId,
+ fileUploadId: collection,
+ },
+ include: {
+ file: true,
+ },
+ })
+ return records
+ })
+})
diff --git a/server/api/files/collections.get.ts b/server/api/files/collections.get.ts
new file mode 100644
index 00000000..738651b5
--- /dev/null
+++ b/server/api/files/collections.get.ts
@@ -0,0 +1,18 @@
+import { FormStatus, PrismaClient } from '@prisma/client'
+
+const prisma = new PrismaClient()
+
+export default eventHandler(async (event) => {
+ const { auth } = event.context
+
+ if ((auth?.userId) == null) {
+ setResponseStatus(event, 403)
+ }
+
+ const collections = await prisma.fileCollection.findMany({
+ where: {
+ status: FormStatus.OPEN,
+ },
+ })
+ return collections
+})
diff --git a/server/api/files/download.post.ts b/server/api/files/download.post.ts
new file mode 100644
index 00000000..b56fff56
--- /dev/null
+++ b/server/api/files/download.post.ts
@@ -0,0 +1,26 @@
+import { PrismaClient } from '@prisma/client'
+
+const prisma = new PrismaClient()
+
+export default eventHandler(async (event) => {
+ const { auth } = event.context
+
+ if ((auth?.userId) == null) {
+ setResponseStatus(event, 403)
+ }
+
+ return readBody(event)
+ .then(async (body) => {
+ const { fileId } = body
+ const file = await prisma.file.findFirst({
+ where: {
+ id: fileId,
+ },
+ })
+ const data = await useStorage('s3').getItem(file.fileId)
+ return {
+ url: data,
+ name: file.name,
+ }
+ })
+})
diff --git a/server/api/files/newRecord.post.ts b/server/api/files/newRecord.post.ts
new file mode 100644
index 00000000..a445f0ec
--- /dev/null
+++ b/server/api/files/newRecord.post.ts
@@ -0,0 +1,116 @@
+import { PrismaClient } from '@prisma/client'
+import { v4 as uuidv4 } from 'uuid'
+
+const prisma = new PrismaClient()
+
+export default eventHandler(async (event) => {
+ const { auth } = event.context
+
+ if ((auth?.userId) == null) {
+ setResponseStatus(event, 403)
+ }
+
+ return readBody(event)
+ .then(async (body) => {
+ const { clubId, collectionId, fileContent, rawName } = body
+ const collectionInfo = await prisma.fileCollection.findFirst({
+ where: {
+ id: collectionId,
+ },
+ })
+ const clubInfo = await prisma.club.findFirst({
+ where: {
+ id: clubId,
+ },
+ })
+ const naming = collectionInfo?.fileNaming
+ const fileName = naming
+ .replaceAll('$id$', clubId)
+ .replaceAll('$club$', clubInfo.name.zh)
+ .replaceAll('$ext$', rawName.split('.').pop())
+ try {
+ const existingRecord = await prisma.fileUploadRecord.findFirstOrThrow({
+ where: {
+ clubId,
+ fileUploadId: collectionId,
+ },
+ select: {
+ id: true,
+ file: true,
+ },
+ })
+ try {
+ await prisma.fileUploadRecord.update({
+ where: {
+ id: existingRecord.id,
+ },
+ data: {
+ createdAt: new Date(),
+ file: {
+ update: {
+ where: {
+ id: existingRecord.fileId,
+ },
+ data: {
+ name: fileName,
+ createdAt: new Date(),
+ },
+ },
+ },
+ },
+ })
+ await useStorage('s3').setItemRaw(existingRecord.file.fileId, fileContent)
+ }
+ catch (error) {
+ console.log(error)
+ console.log('Failed when updating')
+ return {
+ success: false,
+ error,
+ }
+ }
+ console.log('Updated s3 content')
+ return {
+ success: true,
+ }
+ }
+ catch (error) {
+ const fileUUID = uuidv4()
+ try {
+ await prisma.fileUploadRecord.create({
+ data: {
+ club: {
+ connect: {
+ id: clubId,
+ },
+ },
+ fileUpload: {
+ connect: {
+ id: collectionId,
+ },
+ },
+ file: {
+ create: {
+ fileId: fileUUID,
+ name: fileName,
+ },
+ },
+ },
+ })
+ await useStorage('s3').setItemRaw(fileUUID, fileContent)
+ console.log('Created s3 content')
+ return {
+ success: true,
+ }
+ }
+ catch (error) {
+ console.log(error)
+ console.log('Failed to create')
+ return {
+ success: false,
+ error,
+ }
+ }
+ }
+ })
+})