diff --git a/.gitea/workflows/deploy-client.yml b/.gitea/workflows/deploy-client.yml
index dd351e1..c90770b 100644
--- a/.gitea/workflows/deploy-client.yml
+++ b/.gitea/workflows/deploy-client.yml
@@ -3,13 +3,15 @@ name: Deploy
on:
push:
branches:
- - master
+ - release
+ # tags:
+ # - "v[0-9]+.[0-9]+.[0-9]+"
paths:
- - '.gitea/workflows/deploy-client.yml'
- - 'client/**'
+ - ".gitea/workflows/deploy-client.yml"
+ - "client/**"
jobs:
- deploy:
+ publish-web:
runs-on: ubuntu-latest
steps:
@@ -41,3 +43,32 @@ jobs:
--label "traefik.http.routers.chad-client.tls.certresolver=myresolver" \
--label "traefik.http.services.chad-client.loadbalancer.server.port=80" \
chad-client:latest
+
+ publish-tauri:
+ runs-on: windows-latest
+ steps:
+ - uses: actions/checkout@v4
+
+ - name: setup node
+ uses: actions/setup-node@v4
+ with:
+ node-version: lts/*
+
+ - name: install Rust stable
+ uses: dtolnay/rust-toolchain@stable
+
+ - name: install frontend dependencies
+ run: yarn install
+
+ - uses: tauri-apps/tauri-action@v1
+ env:
+ GITHUB_TOKEN: ${{ secrets.TOKEN }}
+ with:
+ tagName: app-v__VERSION__
+ releaseName: "App v__VERSION__"
+ releaseBody: "See the assets to download this version and install."
+ releaseDraft: true
+ projectPath: "./client"
+ githubBaseUrl: "https://git.koptilnya.xyz/api/v1"
+ isGitea: true
+ prerelease: false
diff --git a/client/.yarn/install-state.gz b/client/.yarn/install-state.gz
index c9134bb..bd79814 100644
Binary files a/client/.yarn/install-state.gz and b/client/.yarn/install-state.gz differ
diff --git a/client/app/components.d.ts b/client/app/components.d.ts
index 71909e0..eef64c0 100644
--- a/client/app/components.d.ts
+++ b/client/app/components.d.ts
@@ -17,7 +17,9 @@ declare module 'vue' {
PrimeFloatLabel: typeof import('primevue/floatlabel')['default']
PrimeInputText: typeof import('primevue/inputtext')['default']
PrimeMenu: typeof import('primevue/menu')['default']
+ PrimePanel: typeof import('primevue/panel')['default']
PrimePassword: typeof import('primevue/password')['default']
+ PrimeProgressBar: typeof import('primevue/progressbar')['default']
PrimeSelectButton: typeof import('primevue/selectbutton')['default']
PrimeSlider: typeof import('primevue/slider')['default']
PrimeToast: typeof import('primevue/toast')['default']
diff --git a/client/app/components/ClientRow.vue b/client/app/components/ClientRow.vue
index 8752f1f..3dc1b67 100644
--- a/client/app/components/ClientRow.vue
+++ b/client/app/components/ClientRow.vue
@@ -15,7 +15,7 @@
-
+
@@ -70,11 +70,23 @@ const isMe = computed(() => {
})
const audioConsumer = computed(() => {
- const consumers = getClientConsumers(props.client.id)
+ if (isMe.value)
+ return undefined
+
+ const consumers = getClientConsumers(props.client.socketId)
return consumers.find(consumer => consumer.track.kind === 'audio')
})
+const audioConsumerPaused = computed(() => {
+ if (isMe.value)
+ return false
+
+ const consumers = getClientConsumers(props.client.socketId)
+
+ return consumers.find(consumer => consumer.track.kind === 'audio')?.paused
+})
+
const audioTrack = computed(() => {
return audioConsumer.value?.track
})
diff --git a/client/app/composables/use-app.ts b/client/app/composables/use-app.ts
index 196a6bc..cf18b7a 100644
--- a/client/app/composables/use-app.ts
+++ b/client/app/composables/use-app.ts
@@ -1,4 +1,6 @@
-import { createGlobalState } from '@vueuse/core'
+import { getVersion } from '@tauri-apps/api/app'
+
+import { computedAsync, createGlobalState } from '@vueuse/core'
import { useClients } from '~/composables/use-clients'
export const useApp = createGlobalState(() => {
@@ -11,6 +13,10 @@ export const useApp = createGlobalState(() => {
const previousInputMuted = ref(inputMuted.value)
+ const isTauri = computed(() => '__TAURI_INTERNALS__' in window)
+
+ const version = computedAsync(() => isTauri.value ? getVersion() : 'web', '-')
+
function muteInput() {
inputMuted.value = true
}
@@ -43,13 +49,13 @@ export const useApp = createGlobalState(() => {
watch(inputMuted, async (inputMuted) => {
if (inputMuted) {
- await mediasoup.muteMic()
+ await mediasoup.pauseProducer('microphone')
}
else {
if (outputMuted.value) {
outputMuted.value = false
}
- await mediasoup.unmuteMic()
+ await mediasoup.resumeProducer('microphone')
}
const toastText = inputMuted ? 'Microphone muted' : 'Microphone activated'
@@ -79,5 +85,7 @@ export const useApp = createGlobalState(() => {
muteOutput,
unmuteOutput,
toggleOutput,
+ version,
+ isTauri,
}
})
diff --git a/client/app/composables/use-auth.ts b/client/app/composables/use-auth.ts
index 0440dea..b8590ee 100644
--- a/client/app/composables/use-auth.ts
+++ b/client/app/composables/use-auth.ts
@@ -16,7 +16,7 @@ export const useAuth = createGlobalState(() => {
async function login(username: string, password: string): Promise {
try {
- const result = await chadApi('/login', {
+ const result = await chadApi('/login', {
method: 'POST',
body: {
username,
@@ -33,7 +33,7 @@ export const useAuth = createGlobalState(() => {
async function register(username: string, password: string): Promise {
try {
- const result = await chadApi('/register', {
+ const result = await chadApi('/register', {
method: 'POST',
body: {
username,
diff --git a/client/app/composables/use-mediasoup.ts b/client/app/composables/use-mediasoup.ts
index f15165f..6988b24 100644
--- a/client/app/composables/use-mediasoup.ts
+++ b/client/app/composables/use-mediasoup.ts
@@ -4,6 +4,8 @@ import * as mediasoupClient from 'mediasoup-client'
import { usePreferences } from '~/composables/use-preferences'
import { useSignaling } from '~/composables/use-signaling'
+type ProducerType = 'microphone' | 'camera' | 'share'
+
const ICE_SERVERS: RTCIceServer[] = [
{ urls: 'stun:stun.l.google.com:19302' },
{ urls: 'stun:stun.l.google.com:5349' },
@@ -31,7 +33,7 @@ export const useMediasoup = createSharedComposable(() => {
const recvTransport = shallowRef()
const micProducer = shallowRef()
- const webcamProducer = shallowRef()
+ const cameraProducer = shallowRef()
const shareProducer = shallowRef()
const consumers = shallowRef
diff --git a/client/app/pages/preferences.vue b/client/app/pages/preferences.vue
index 437d94a..4059764 100644
--- a/client/app/pages/preferences.vue
+++ b/client/app/pages/preferences.vue
@@ -11,10 +11,28 @@
+
+
+
+
+
+
+
+ {{ slotProps.message.detail }}
+
+
+
+
+
diff --git a/client/globals.d.ts b/client/globals.d.ts
index 07dffe8..90c9d01 100644
--- a/client/globals.d.ts
+++ b/client/globals.d.ts
@@ -1 +1,2 @@
+declare const __API_BASE_URL__: string
declare const __COMMIT_SHA__: string
diff --git a/client/latest.json b/client/latest.json
index e2d6c01..59fb6bb 100644
--- a/client/latest.json
+++ b/client/latest.json
@@ -1,10 +1,10 @@
{
- "pub_date": "2025-10-19T18:09:51Z",
- "version": "0.2.1",
+ "pub_date": "2025-10-19T23:31:56Z",
+ "version": "0.2.4",
"platforms": {
"windows-x86_64": {
- "url": "https://git.koptilnya.xyz/opti1337/chad/releases/download/latest/chad_0.2.1_x64-setup.exe",
- "signature": "dW50cnVzdGVkIGNvbW1lbnQ6IHNpZ25hdHVyZSBmcm9tIHRhdXJpIHNlY3JldCBrZXkKUlVUMHdwTUN1SnhESjBiY2xtakN0WW1LTHNyQ1RyQjd2YlVXRUozWHp0K003SlFYbmlreHY2UjF5RjAvdEhZKzBpL0J6NVJ1c09VaUVUa3ZCZmFUL1AxN2lCNW9pVW9MY0FvPQp0cnVzdGVkIGNvbW1lbnQ6IHRpbWVzdGFtcDoxNzYwODk3MzkwCWZpbGU6Y2hhZF8wLjIuMV94NjQtc2V0dXAuZXhlCmtqcDJtSVQ0d1ZVdXpoYWxnMXVxQVlwLzM5V3BjM2Q4RGQzRXZBUlRFQzhnaDdqdjNTK0h0RW1zcjR5UFE2ZWx2dVppbWpjMlBYdG1ZUGM3NXVqT0F3PT0K"
+ "url": "https://git.koptilnya.xyz/opti1337/chad/releases/download/latest/chad_0.2.4_x64-setup.exe",
+ "signature": "dW50cnVzdGVkIGNvbW1lbnQ6IHNpZ25hdHVyZSBmcm9tIHRhdXJpIHNlY3JldCBrZXkKUlVUMHdwTUN1SnhESjA5ekxpMGNPQURBSWVYekdEb3kxZ2tKVUNyMVRmcG9vckpsT1Fhcm9PTFp4ZVdDdEtvdWVDYWY0bkJBWjZOby9QNkNNWFJUT1VBY0tRZVNXUVl6eVEwPQp0cnVzdGVkIGNvbW1lbnQ6IHRpbWVzdGFtcDoxNzYwOTE2NzE1CWZpbGU6Y2hhZF8wLjIuNF94NjQtc2V0dXAuZXhlCitPYjR2QjNxNk9HdjV1WmdnUFFWRWxraDJzUFZrd1p2bGwrcEpaWjEzZExaQUJvWWNjL1VWWFZlVG4yR2hIeDFSNzJTRk1MMDVtdGo4NGE0ckp0bERBPT0K"
}
},
"notes": ""
diff --git a/client/nuxt.config.ts b/client/nuxt.config.ts
index f0ca8bc..990c74e 100644
--- a/client/nuxt.config.ts
+++ b/client/nuxt.config.ts
@@ -1,3 +1,4 @@
+import { definePreset } from '@primeuix/themes'
import Aura from '@primeuix/themes/aura'
import tailwindcss from '@tailwindcss/vite'
@@ -10,10 +11,60 @@ export default defineNuxtConfig({
'@primevue/nuxt-module',
'@formkit/auto-animate/nuxt',
],
+ fonts: {
+ provider: 'google',
+ },
primevue: {
options: {
theme: {
- preset: Aura,
+ preset: definePreset(Aura, {
+ semantic: {
+ transitionDuration: '150ms',
+ primary: {
+ 50: '{zinc.50}',
+ 100: '{zinc.100}',
+ 200: '{zinc.200}',
+ 300: '{zinc.300}',
+ 400: '{zinc.400}',
+ 500: '{zinc.500}',
+ 600: '{zinc.600}',
+ 700: '{zinc.700}',
+ 800: '{zinc.800}',
+ 900: '{zinc.900}',
+ 950: '{zinc.950}',
+ },
+ },
+ colorScheme: {
+ light: {
+ primary: {
+ color: '{zinc.950}',
+ inverseColor: '#ffffff',
+ hoverColor: '{zinc.900}',
+ activeColor: '{zinc.800}',
+ },
+ highlight: {
+ background: '{zinc.950}',
+ focusBackground: '{zinc.700}',
+ color: '#ffffff',
+ focusColor: '#ffffff',
+ },
+ },
+ dark: {
+ primary: {
+ color: '{zinc.50}',
+ inverseColor: '{zinc.950}',
+ hoverColor: '{zinc.100}',
+ activeColor: '{zinc.200}',
+ },
+ highlight: {
+ background: 'rgba(250, 250, 250, .16)',
+ focusBackground: 'rgba(250, 250, 250, .24)',
+ color: 'rgba(255,255,255,.87)',
+ focusColor: 'rgba(255,255,255,.87)',
+ },
+ },
+ },
+ }),
},
},
components: {
@@ -25,9 +76,6 @@ export default defineNuxtConfig({
'@/assets/styles/primeicons.css',
'@/assets/styles/main.scss',
],
- devServer: {
- // host: '0',
- },
vite: {
plugins: [
tailwindcss(),
@@ -38,14 +86,18 @@ export default defineNuxtConfig({
strictPort: true,
proxy: {
'/api': {
- // target: 'http://localhost:4000',
- target: 'https://api.koptilnya.xyz',
+ target: 'http://localhost:4000/chad',
+ // target: 'https://api.koptilnya.xyz/chad',
+ ws: true,
changeOrigin: true,
- rewrite: path => path.replace(/^\/api/, '/chad'),
+ rewrite: (path) => {
+ return path.replace(/^\/api/, '')
+ },
},
},
},
define: {
+ __API_BASE_URL__: JSON.stringify(import.meta.env.API_BASE_URL || '/api'),
__COMMIT_SHA__: JSON.stringify(import.meta.env.COMMIT_SHA || 'local'),
},
},
diff --git a/client/package.json b/client/package.json
index 76bebc6..f6e761c 100644
--- a/client/package.json
+++ b/client/package.json
@@ -18,13 +18,14 @@
"@tauri-apps/plugin-updater": "~2",
"@vueuse/core": "^13.9.0",
"mediasoup-client": "^3.16.7",
- "nuxt": "^4.1.2",
+ "nuxt": "^4.2.2",
"postcss": "^8.5.6",
"primeicons": "^7.0.0",
"primevue": "^4.4.0",
"socket.io-client": "^4.8.1",
"tailwindcss": "^4.1.14",
"tailwindcss-primeui": "^0.6.1",
+ "ufo": "^1.6.1",
"vue": "^3.5.22",
"vue-router": "^4.5.1"
},
diff --git a/client/server/plugins/extend-html.ts b/client/server/plugins/extend-html.ts
new file mode 100644
index 0000000..e413499
--- /dev/null
+++ b/client/server/plugins/extend-html.ts
@@ -0,0 +1,4 @@
+export default defineNitroPlugin((nitroApp) => {
+ nitroApp.hooks.hook('render:html', (html, { event }) => {
+ })
+})
diff --git a/client/shared/chad-api.ts b/client/shared/chad-api.ts
index 0001966..77ac8e4 100644
--- a/client/shared/chad-api.ts
+++ b/client/shared/chad-api.ts
@@ -1,8 +1,9 @@
import { ToastEventBus } from 'primevue'
const instance = $fetch.create({
- baseURL: process.env.API_BASE_URL || 'https://api.koptilnya.xyz/chad',
+ baseURL: __API_BASE_URL__,
credentials: 'include',
+ retry: false,
onResponseError({ response }) {
if (!import.meta.client)
return
@@ -13,4 +14,48 @@ const instance = $fetch.create({
},
})
+// function instance(url: string, request: Request) {
+// console.log(url)
+// return fetch({
+// url: `https://api.koptilnya.xyz${url}`,
+// credentials: 'include',
+// method: 'GET',
+// headers: {
+// 'Accept': 'application/json',
+// 'Content-Type': 'application/json',
+// ...request.headers,
+// },
+// ...request,
+// body: request.body ? JSON.stringify(request.body) : undefined,
+// })
+// }
+
+// async function instance(url: string, options: Partial = {}) {
+// const response = await fetch(`https://api.koptilnya.xyz/chad${url}`, {
+// method: options.method || 'GET',
+// headers: {
+// 'Content-Type': 'application/json',
+// ...(options.headers || {}),
+// },
+// body: JSON.stringify(options.body ?? {}),
+// responseType: 2,
+// credentials: 'include',
+// })
+//
+// const data = await response.json()
+//
+// if (response.status >= 400) {
+// if (!import.meta.client)
+// return
+//
+// const message = data?.error || 'Something went wrong'
+//
+// ToastEventBus.emit('add', { severity: 'error', summary: 'Error', detail: message, closable: false, life: 3000 })
+//
+// throw new Error(`HTTP ${response.status}: ${data?.message || 'Ошибка'}`)
+// }
+//
+// return data
+// }
+
export default instance
diff --git a/client/src-tauri/src/lib.rs b/client/src-tauri/src/lib.rs
index fe626f7..1208992 100644
--- a/client/src-tauri/src/lib.rs
+++ b/client/src-tauri/src/lib.rs
@@ -3,11 +3,8 @@ pub fn run() {
tauri::Builder::default()
.plugin(tauri_plugin_process::init())
.plugin(tauri_plugin_updater::Builder::new().build())
- // .plugin(tauri_plugin_single_instance::init(|app, args, cwd| {
- // app.get_webview_window("main")
- // .expect("no main window")
- // .set_focus();
- // }))
+ .plugin(tauri_plugin_single_instance::init(|_, _, _| {
+ }))
.setup(|app| {
if cfg!(debug_assertions) {
app.handle().plugin(
diff --git a/client/src-tauri/tauri.conf.json b/client/src-tauri/tauri.conf.json
index 3c7a319..4efaa6a 100644
--- a/client/src-tauri/tauri.conf.json
+++ b/client/src-tauri/tauri.conf.json
@@ -1,7 +1,7 @@
{
"$schema": "../node_modules/@tauri-apps/cli/config.schema.json",
"productName": "chad",
- "version": "0.2.2",
+ "version": "0.2.5-rc.2",
"identifier": "xyz.koptilnya.chad",
"build": {
"frontendDist": "../.output/public",
@@ -21,7 +21,8 @@
"fullscreen": false,
"center": true,
"theme": "Dark",
- "additionalBrowserArgs": "--disable-features=msWebOOUI,msPdfOOUI,msSmartScreenProtection --autoplay-policy=no-user-gesture-required"
+ "additionalBrowserArgs": "--disable-features=msWebOOUI,msPdfOOUI,msSmartScreenProtection --autoplay-policy=no-user-gesture-required",
+ "incognito": false
}
],
"security": {
diff --git a/client/yarn.lock b/client/yarn.lock
index e742201..6be3481 100644
--- a/client/yarn.lock
+++ b/client/yarn.lock
@@ -130,39 +130,39 @@ __metadata:
languageName: node
linkType: hard
-"@babel/core@npm:^7.28.3":
- version: 7.28.4
- resolution: "@babel/core@npm:7.28.4"
+"@babel/core@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/core@npm:7.28.5"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
- "@babel/generator": "npm:^7.28.3"
+ "@babel/generator": "npm:^7.28.5"
"@babel/helper-compilation-targets": "npm:^7.27.2"
"@babel/helper-module-transforms": "npm:^7.28.3"
"@babel/helpers": "npm:^7.28.4"
- "@babel/parser": "npm:^7.28.4"
+ "@babel/parser": "npm:^7.28.5"
"@babel/template": "npm:^7.27.2"
- "@babel/traverse": "npm:^7.28.4"
- "@babel/types": "npm:^7.28.4"
+ "@babel/traverse": "npm:^7.28.5"
+ "@babel/types": "npm:^7.28.5"
"@jridgewell/remapping": "npm:^2.3.5"
convert-source-map: "npm:^2.0.0"
debug: "npm:^4.1.0"
gensync: "npm:^1.0.0-beta.2"
json5: "npm:^2.2.3"
semver: "npm:^6.3.1"
- checksum: 10c0/ef5a6c3c6bf40d3589b5593f8118cfe2602ce737412629fb6e26d595be2fcbaae0807b43027a5c42ec4fba5b895ff65891f2503b5918c8a3ea3542ab44d4c278
+ checksum: 10c0/535f82238027621da6bdffbdbe896ebad3558b311d6f8abc680637a9859b96edbf929ab010757055381570b29cf66c4a295b5618318d27a4273c0e2033925e72
languageName: node
linkType: hard
-"@babel/generator@npm:^7.28.3":
- version: 7.28.3
- resolution: "@babel/generator@npm:7.28.3"
+"@babel/generator@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/generator@npm:7.28.5"
dependencies:
- "@babel/parser": "npm:^7.28.3"
- "@babel/types": "npm:^7.28.2"
+ "@babel/parser": "npm:^7.28.5"
+ "@babel/types": "npm:^7.28.5"
"@jridgewell/gen-mapping": "npm:^0.3.12"
"@jridgewell/trace-mapping": "npm:^0.3.28"
jsesc: "npm:^3.0.2"
- checksum: 10c0/0ff58bcf04f8803dcc29479b547b43b9b0b828ec1ee0668e92d79f9e90f388c28589056637c5ff2fd7bcf8d153c990d29c448d449d852bf9d1bc64753ca462bc
+ checksum: 10c0/9f219fe1d5431b6919f1a5c60db8d5d34fe546c0d8f5a8511b32f847569234ffc8032beb9e7404649a143f54e15224ecb53a3d11b6bb85c3203e573d91fca752
languageName: node
linkType: hard
@@ -188,20 +188,20 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-create-class-features-plugin@npm:^7.27.1":
- version: 7.28.3
- resolution: "@babel/helper-create-class-features-plugin@npm:7.28.3"
+"@babel/helper-create-class-features-plugin@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/helper-create-class-features-plugin@npm:7.28.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.27.3"
- "@babel/helper-member-expression-to-functions": "npm:^7.27.1"
+ "@babel/helper-member-expression-to-functions": "npm:^7.28.5"
"@babel/helper-optimise-call-expression": "npm:^7.27.1"
"@babel/helper-replace-supers": "npm:^7.27.1"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1"
- "@babel/traverse": "npm:^7.28.3"
+ "@babel/traverse": "npm:^7.28.5"
semver: "npm:^6.3.1"
peerDependencies:
"@babel/core": ^7.0.0
- checksum: 10c0/f1ace9476d581929128fd4afc29783bb674663898577b2e48ed139cfd2e92dfc69654cff76cb8fd26fece6286f66a99a993186c1e0a3e17b703b352d0bcd1ca4
+ checksum: 10c0/786a6514efcf4514aaad85beed419b9184d059f4c9a9a95108f320142764999827252a851f7071de19f29424d369616573ecbaa347f1ce23fb12fc6827d9ff56
languageName: node
linkType: hard
@@ -212,13 +212,13 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-member-expression-to-functions@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/helper-member-expression-to-functions@npm:7.27.1"
+"@babel/helper-member-expression-to-functions@npm:^7.27.1, @babel/helper-member-expression-to-functions@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/helper-member-expression-to-functions@npm:7.28.5"
dependencies:
- "@babel/traverse": "npm:^7.27.1"
- "@babel/types": "npm:^7.27.1"
- checksum: 10c0/5762ad009b6a3d8b0e6e79ff6011b3b8fdda0fefad56cfa8bfbe6aa02d5a8a8a9680a45748fe3ac47e735a03d2d88c0a676e3f9f59f20ae9fadcc8d51ccd5a53
+ "@babel/traverse": "npm:^7.28.5"
+ "@babel/types": "npm:^7.28.5"
+ checksum: 10c0/4e6e05fbf4dffd0bc3e55e28fcaab008850be6de5a7013994ce874ec2beb90619cda4744b11607a60f8aae0227694502908add6188ceb1b5223596e765b44814
languageName: node
linkType: hard
@@ -291,10 +291,10 @@ __metadata:
languageName: node
linkType: hard
-"@babel/helper-validator-identifier@npm:^7.27.1":
- version: 7.27.1
- resolution: "@babel/helper-validator-identifier@npm:7.27.1"
- checksum: 10c0/c558f11c4871d526498e49d07a84752d1800bf72ac0d3dad100309a2eaba24efbf56ea59af5137ff15e3a00280ebe588560534b0e894a4750f8b1411d8f78b84
+"@babel/helper-validator-identifier@npm:^7.27.1, @babel/helper-validator-identifier@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/helper-validator-identifier@npm:7.28.5"
+ checksum: 10c0/42aaebed91f739a41f3d80b72752d1f95fd7c72394e8e4bd7cdd88817e0774d80a432451bcba17c2c642c257c483bf1d409dd4548883429ea9493a3bc4ab0847
languageName: node
linkType: hard
@@ -315,14 +315,14 @@ __metadata:
languageName: node
linkType: hard
-"@babel/parser@npm:^7.25.4, @babel/parser@npm:^7.27.2, @babel/parser@npm:^7.28.0, @babel/parser@npm:^7.28.3, @babel/parser@npm:^7.28.4":
- version: 7.28.4
- resolution: "@babel/parser@npm:7.28.4"
+"@babel/parser@npm:^7.27.2, @babel/parser@npm:^7.28.4, @babel/parser@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/parser@npm:7.28.5"
dependencies:
- "@babel/types": "npm:^7.28.4"
+ "@babel/types": "npm:^7.28.5"
bin:
parser: ./bin/babel-parser.js
- checksum: 10c0/58b239a5b1477ac7ed7e29d86d675cc81075ca055424eba6485872626db2dc556ce63c45043e5a679cd925e999471dba8a3ed4864e7ab1dbf64306ab72c52707
+ checksum: 10c0/5bbe48bf2c79594ac02b490a41ffde7ef5aa22a9a88ad6bcc78432a6ba8a9d638d531d868bd1f104633f1f6bba9905746e15185b8276a3756c42b765d131b1ef
languageName: node
linkType: hard
@@ -348,18 +348,18 @@ __metadata:
languageName: node
linkType: hard
-"@babel/plugin-transform-typescript@npm:^7.28.0":
- version: 7.28.0
- resolution: "@babel/plugin-transform-typescript@npm:7.28.0"
+"@babel/plugin-transform-typescript@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/plugin-transform-typescript@npm:7.28.5"
dependencies:
"@babel/helper-annotate-as-pure": "npm:^7.27.3"
- "@babel/helper-create-class-features-plugin": "npm:^7.27.1"
+ "@babel/helper-create-class-features-plugin": "npm:^7.28.5"
"@babel/helper-plugin-utils": "npm:^7.27.1"
"@babel/helper-skip-transparent-expression-wrappers": "npm:^7.27.1"
"@babel/plugin-syntax-typescript": "npm:^7.27.1"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/049c2bd3407bbf5041d8c95805a4fadee6d176e034f6b94ce7967b92a846f1e00f323cf7dfbb2d06c93485f241fb8cf4c10520e30096a6059d251b94e80386e9
+ checksum: 10c0/09e574ba5462e56452b4ceecae65e53c8e697a2d3559ce5d210bed10ac28a18aa69377e7550c30520eb29b40c417ee61997d5d58112657f22983244b78915a7c
languageName: node
linkType: hard
@@ -374,28 +374,48 @@ __metadata:
languageName: node
linkType: hard
-"@babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.0, @babel/traverse@npm:^7.28.3, @babel/traverse@npm:^7.28.4":
- version: 7.28.4
- resolution: "@babel/traverse@npm:7.28.4"
+"@babel/traverse@npm:^7.27.1, @babel/traverse@npm:^7.28.3, @babel/traverse@npm:^7.28.4, @babel/traverse@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/traverse@npm:7.28.5"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
- "@babel/generator": "npm:^7.28.3"
+ "@babel/generator": "npm:^7.28.5"
"@babel/helper-globals": "npm:^7.28.0"
- "@babel/parser": "npm:^7.28.4"
+ "@babel/parser": "npm:^7.28.5"
"@babel/template": "npm:^7.27.2"
- "@babel/types": "npm:^7.28.4"
+ "@babel/types": "npm:^7.28.5"
debug: "npm:^4.3.1"
- checksum: 10c0/ee678fdd49c9f54a32e07e8455242390d43ce44887cea6567b233fe13907b89240c377e7633478a32c6cf1be0e17c2f7f3b0c59f0666e39c5074cc47b968489c
+ checksum: 10c0/f6c4a595993ae2b73f2d4cd9c062f2e232174d293edd4abe1d715bd6281da8d99e47c65857e8d0917d9384c65972f4acdebc6749a7c40a8fcc38b3c7fb3e706f
languageName: node
linkType: hard
-"@babel/types@npm:^7.25.4, @babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.2, @babel/types@npm:^7.28.4":
- version: 7.28.4
- resolution: "@babel/types@npm:7.28.4"
+"@babel/types@npm:^7.27.1, @babel/types@npm:^7.27.3, @babel/types@npm:^7.28.4, @babel/types@npm:^7.28.5":
+ version: 7.28.5
+ resolution: "@babel/types@npm:7.28.5"
dependencies:
"@babel/helper-string-parser": "npm:^7.27.1"
- "@babel/helper-validator-identifier": "npm:^7.27.1"
- checksum: 10c0/ac6f909d6191319e08c80efbfac7bd9a25f80cc83b43cd6d82e7233f7a6b9d6e7b90236f3af7400a3f83b576895bcab9188a22b584eb0f224e80e6d4e95f4517
+ "@babel/helper-validator-identifier": "npm:^7.28.5"
+ checksum: 10c0/a5a483d2100befbf125793640dec26b90b95fd233a94c19573325898a5ce1e52cdfa96e495c7dcc31b5eca5b66ce3e6d4a0f5a4a62daec271455959f208ab08a
+ languageName: node
+ linkType: hard
+
+"@bomb.sh/tab@npm:^0.0.10":
+ version: 0.0.10
+ resolution: "@bomb.sh/tab@npm:0.0.10"
+ peerDependencies:
+ cac: ^6.7.14
+ citty: ^0.1.6
+ commander: ^13.1.0
+ peerDependenciesMeta:
+ cac:
+ optional: true
+ citty:
+ optional: true
+ commander:
+ optional: true
+ bin:
+ tab: dist/bin/cli.js
+ checksum: 10c0/ee975eb5cc5f55f63132aa79ca2be382737bbd4700601df506f9fda6bc575c50ca0b6107fc479f351d507191cb223325a0cf26176c1b9522e1dc9c486448ef84
languageName: node
linkType: hard
@@ -434,6 +454,27 @@ __metadata:
languageName: node
linkType: hard
+"@clack/core@npm:1.0.0-alpha.7":
+ version: 1.0.0-alpha.7
+ resolution: "@clack/core@npm:1.0.0-alpha.7"
+ dependencies:
+ picocolors: "npm:^1.0.0"
+ sisteransi: "npm:^1.0.5"
+ checksum: 10c0/e3d706101c57252d41c77abfb16d1f163bc9e4b81cacbc70c022a859c500ceb7024049d8ff907c8869dcaa9e141e4ef6bb57b83c46027fcdc188072f7b0cc728
+ languageName: node
+ linkType: hard
+
+"@clack/prompts@npm:1.0.0-alpha.8":
+ version: 1.0.0-alpha.8
+ resolution: "@clack/prompts@npm:1.0.0-alpha.8"
+ dependencies:
+ "@clack/core": "npm:1.0.0-alpha.7"
+ picocolors: "npm:^1.0.0"
+ sisteransi: "npm:^1.0.5"
+ checksum: 10c0/cbd6c2750f23a1658b6479ac7c78e3abf5ba225ebe4a46b0be0ad2333b2a57b56e7825ecf57560417a2c3f4e86fd578508d05e77fac2b52044cfff89a93fba77
+ languageName: node
+ linkType: hard
+
"@clack/prompts@npm:^0.11.0":
version: 0.11.0
resolution: "@clack/prompts@npm:0.11.0"
@@ -475,22 +516,42 @@ __metadata:
languageName: node
linkType: hard
-"@emnapi/core@npm:^1.5.0":
- version: 1.5.0
- resolution: "@emnapi/core@npm:1.5.0"
+"@dxup/nuxt@npm:^0.2.2":
+ version: 0.2.2
+ resolution: "@dxup/nuxt@npm:0.2.2"
dependencies:
- "@emnapi/wasi-threads": "npm:1.1.0"
- tslib: "npm:^2.4.0"
- checksum: 10c0/52ba3485277706d92fa27d92b37e5b4f6ef0742c03ed68f8096f294c6bfa30f0752c82d4c2bfa14bff4dc30d63c9f71a8f9fb64a92743d00807d9e468fafd5ff
+ "@dxup/unimport": "npm:^0.1.2"
+ "@nuxt/kit": "npm:^4.2.1"
+ chokidar: "npm:^4.0.3"
+ pathe: "npm:^2.0.3"
+ tinyglobby: "npm:^0.2.15"
+ checksum: 10c0/0875be8bb644962452de4f9d5f8bcc9b5592c3bd65b963ddf0365e526e013117dbc14d34cc2d4c65c38f2b7163f9123ce3a8c730d7fd1cd11d56b280c3ed2a58
languageName: node
linkType: hard
-"@emnapi/runtime@npm:^1.5.0":
- version: 1.5.0
- resolution: "@emnapi/runtime@npm:1.5.0"
+"@dxup/unimport@npm:^0.1.2":
+ version: 0.1.2
+ resolution: "@dxup/unimport@npm:0.1.2"
+ checksum: 10c0/acb379a689fec511559b6b5314f029b6360522ea6a8ae9f69acb00c065f17d13c371131b3b3713df1c3d4a64e05ccf4048464b269b3d478a0d59b182c800b3be
+ languageName: node
+ linkType: hard
+
+"@emnapi/core@npm:^1.5.0, @emnapi/core@npm:^1.7.1":
+ version: 1.7.1
+ resolution: "@emnapi/core@npm:1.7.1"
+ dependencies:
+ "@emnapi/wasi-threads": "npm:1.1.0"
+ tslib: "npm:^2.4.0"
+ checksum: 10c0/f3740be23440b439333e3ae3832163f60c96c4e35337f3220ceba88f36ee89a57a871d27c94eb7a9ff98a09911ed9a2089e477ab549f4d30029f8b907f84a351
+ languageName: node
+ linkType: hard
+
+"@emnapi/runtime@npm:^1.5.0, @emnapi/runtime@npm:^1.7.1":
+ version: 1.7.1
+ resolution: "@emnapi/runtime@npm:1.7.1"
dependencies:
tslib: "npm:^2.4.0"
- checksum: 10c0/a85c9fc4e3af49cbe41e5437e5be2551392a931910cd0a5b5d3572532786927810c9cc1db11b232ec8f9657b33d4e6f7c4f985f1a052917d7cd703b5b2a20faa
+ checksum: 10c0/26b851cd3e93877d8732a985a2ebf5152325bbacc6204ef5336a47359dedcc23faeb08cdfcb8bb389b5401b3e894b882bc1a1e55b4b7c1ed1e67c991a760ddd5
languageName: node
linkType: hard
@@ -529,184 +590,366 @@ __metadata:
languageName: node
linkType: hard
-"@esbuild/aix-ppc64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/aix-ppc64@npm:0.25.10"
+"@esbuild/aix-ppc64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/aix-ppc64@npm:0.25.12"
conditions: os=aix & cpu=ppc64
languageName: node
linkType: hard
-"@esbuild/android-arm64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/android-arm64@npm:0.25.10"
+"@esbuild/aix-ppc64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/aix-ppc64@npm:0.27.2"
+ conditions: os=aix & cpu=ppc64
+ languageName: node
+ linkType: hard
+
+"@esbuild/android-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/android-arm64@npm:0.25.12"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/android-arm@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/android-arm@npm:0.25.10"
+"@esbuild/android-arm64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/android-arm64@npm:0.27.2"
+ conditions: os=android & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/android-arm@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/android-arm@npm:0.25.12"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
-"@esbuild/android-x64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/android-x64@npm:0.25.10"
+"@esbuild/android-arm@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/android-arm@npm:0.27.2"
+ conditions: os=android & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@esbuild/android-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/android-x64@npm:0.25.12"
conditions: os=android & cpu=x64
languageName: node
linkType: hard
-"@esbuild/darwin-arm64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/darwin-arm64@npm:0.25.10"
+"@esbuild/android-x64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/android-x64@npm:0.27.2"
+ conditions: os=android & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/darwin-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/darwin-arm64@npm:0.25.12"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/darwin-x64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/darwin-x64@npm:0.25.10"
+"@esbuild/darwin-arm64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/darwin-arm64@npm:0.27.2"
+ conditions: os=darwin & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/darwin-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/darwin-x64@npm:0.25.12"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@esbuild/freebsd-arm64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/freebsd-arm64@npm:0.25.10"
+"@esbuild/darwin-x64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/darwin-x64@npm:0.27.2"
+ conditions: os=darwin & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/freebsd-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/freebsd-arm64@npm:0.25.12"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/freebsd-x64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/freebsd-x64@npm:0.25.10"
+"@esbuild/freebsd-arm64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/freebsd-arm64@npm:0.27.2"
+ conditions: os=freebsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/freebsd-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/freebsd-x64@npm:0.25.12"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"@esbuild/linux-arm64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/linux-arm64@npm:0.25.10"
+"@esbuild/freebsd-x64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/freebsd-x64@npm:0.27.2"
+ conditions: os=freebsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/linux-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-arm64@npm:0.25.12"
conditions: os=linux & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/linux-arm@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/linux-arm@npm:0.25.10"
+"@esbuild/linux-arm64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/linux-arm64@npm:0.27.2"
+ conditions: os=linux & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/linux-arm@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-arm@npm:0.25.12"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
-"@esbuild/linux-ia32@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/linux-ia32@npm:0.25.10"
+"@esbuild/linux-arm@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/linux-arm@npm:0.27.2"
+ conditions: os=linux & cpu=arm
+ languageName: node
+ linkType: hard
+
+"@esbuild/linux-ia32@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-ia32@npm:0.25.12"
conditions: os=linux & cpu=ia32
languageName: node
linkType: hard
-"@esbuild/linux-loong64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/linux-loong64@npm:0.25.10"
+"@esbuild/linux-ia32@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/linux-ia32@npm:0.27.2"
+ conditions: os=linux & cpu=ia32
+ languageName: node
+ linkType: hard
+
+"@esbuild/linux-loong64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-loong64@npm:0.25.12"
conditions: os=linux & cpu=loong64
languageName: node
linkType: hard
-"@esbuild/linux-mips64el@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/linux-mips64el@npm:0.25.10"
+"@esbuild/linux-loong64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/linux-loong64@npm:0.27.2"
+ conditions: os=linux & cpu=loong64
+ languageName: node
+ linkType: hard
+
+"@esbuild/linux-mips64el@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-mips64el@npm:0.25.12"
conditions: os=linux & cpu=mips64el
languageName: node
linkType: hard
-"@esbuild/linux-ppc64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/linux-ppc64@npm:0.25.10"
+"@esbuild/linux-mips64el@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/linux-mips64el@npm:0.27.2"
+ conditions: os=linux & cpu=mips64el
+ languageName: node
+ linkType: hard
+
+"@esbuild/linux-ppc64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-ppc64@npm:0.25.12"
conditions: os=linux & cpu=ppc64
languageName: node
linkType: hard
-"@esbuild/linux-riscv64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/linux-riscv64@npm:0.25.10"
+"@esbuild/linux-ppc64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/linux-ppc64@npm:0.27.2"
+ conditions: os=linux & cpu=ppc64
+ languageName: node
+ linkType: hard
+
+"@esbuild/linux-riscv64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-riscv64@npm:0.25.12"
conditions: os=linux & cpu=riscv64
languageName: node
linkType: hard
-"@esbuild/linux-s390x@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/linux-s390x@npm:0.25.10"
+"@esbuild/linux-riscv64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/linux-riscv64@npm:0.27.2"
+ conditions: os=linux & cpu=riscv64
+ languageName: node
+ linkType: hard
+
+"@esbuild/linux-s390x@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-s390x@npm:0.25.12"
conditions: os=linux & cpu=s390x
languageName: node
linkType: hard
-"@esbuild/linux-x64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/linux-x64@npm:0.25.10"
+"@esbuild/linux-s390x@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/linux-s390x@npm:0.27.2"
+ conditions: os=linux & cpu=s390x
+ languageName: node
+ linkType: hard
+
+"@esbuild/linux-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/linux-x64@npm:0.25.12"
conditions: os=linux & cpu=x64
languageName: node
linkType: hard
-"@esbuild/netbsd-arm64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/netbsd-arm64@npm:0.25.10"
+"@esbuild/linux-x64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/linux-x64@npm:0.27.2"
+ conditions: os=linux & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/netbsd-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/netbsd-arm64@npm:0.25.12"
conditions: os=netbsd & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/netbsd-x64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/netbsd-x64@npm:0.25.10"
+"@esbuild/netbsd-arm64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/netbsd-arm64@npm:0.27.2"
+ conditions: os=netbsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/netbsd-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/netbsd-x64@npm:0.25.12"
conditions: os=netbsd & cpu=x64
languageName: node
linkType: hard
-"@esbuild/openbsd-arm64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/openbsd-arm64@npm:0.25.10"
+"@esbuild/netbsd-x64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/netbsd-x64@npm:0.27.2"
+ conditions: os=netbsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/openbsd-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/openbsd-arm64@npm:0.25.12"
conditions: os=openbsd & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/openbsd-x64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/openbsd-x64@npm:0.25.10"
+"@esbuild/openbsd-arm64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/openbsd-arm64@npm:0.27.2"
+ conditions: os=openbsd & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/openbsd-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/openbsd-x64@npm:0.25.12"
conditions: os=openbsd & cpu=x64
languageName: node
linkType: hard
-"@esbuild/openharmony-arm64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/openharmony-arm64@npm:0.25.10"
+"@esbuild/openbsd-x64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/openbsd-x64@npm:0.27.2"
+ conditions: os=openbsd & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/openharmony-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/openharmony-arm64@npm:0.25.12"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/sunos-x64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/sunos-x64@npm:0.25.10"
+"@esbuild/openharmony-arm64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/openharmony-arm64@npm:0.27.2"
+ conditions: os=openharmony & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/sunos-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/sunos-x64@npm:0.25.12"
conditions: os=sunos & cpu=x64
languageName: node
linkType: hard
-"@esbuild/win32-arm64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/win32-arm64@npm:0.25.10"
+"@esbuild/sunos-x64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/sunos-x64@npm:0.27.2"
+ conditions: os=sunos & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/win32-arm64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/win32-arm64@npm:0.25.12"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@esbuild/win32-ia32@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/win32-ia32@npm:0.25.10"
+"@esbuild/win32-arm64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/win32-arm64@npm:0.27.2"
+ conditions: os=win32 & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@esbuild/win32-ia32@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/win32-ia32@npm:0.25.12"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
-"@esbuild/win32-x64@npm:0.25.10":
- version: 0.25.10
- resolution: "@esbuild/win32-x64@npm:0.25.10"
+"@esbuild/win32-ia32@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/win32-ia32@npm:0.27.2"
+ conditions: os=win32 & cpu=ia32
+ languageName: node
+ linkType: hard
+
+"@esbuild/win32-x64@npm:0.25.12":
+ version: 0.25.12
+ resolution: "@esbuild/win32-x64@npm:0.25.12"
+ conditions: os=win32 & cpu=x64
+ languageName: node
+ linkType: hard
+
+"@esbuild/win32-x64@npm:0.27.2":
+ version: 0.27.2
+ resolution: "@esbuild/win32-x64@npm:0.27.2"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
@@ -1020,25 +1263,14 @@ __metadata:
languageName: node
linkType: hard
-"@napi-rs/wasm-runtime@npm:^1.0.3":
- version: 1.0.5
- resolution: "@napi-rs/wasm-runtime@npm:1.0.5"
+"@napi-rs/wasm-runtime@npm:^1.0.5, @napi-rs/wasm-runtime@npm:^1.1.0":
+ version: 1.1.0
+ resolution: "@napi-rs/wasm-runtime@npm:1.1.0"
dependencies:
- "@emnapi/core": "npm:^1.5.0"
- "@emnapi/runtime": "npm:^1.5.0"
+ "@emnapi/core": "npm:^1.7.1"
+ "@emnapi/runtime": "npm:^1.7.1"
"@tybys/wasm-util": "npm:^0.10.1"
- checksum: 10c0/8d29299933c57b6ead61f46fad5c3dfabc31e1356bbaf25c3a8ae57be0af0db0006a808f2c1bb16e28925e027f20e0856550dac94e015f56dd6ed53b38f9a385
- languageName: node
- linkType: hard
-
-"@napi-rs/wasm-runtime@npm:^1.0.5":
- version: 1.0.6
- resolution: "@napi-rs/wasm-runtime@npm:1.0.6"
- dependencies:
- "@emnapi/core": "npm:^1.5.0"
- "@emnapi/runtime": "npm:^1.5.0"
- "@tybys/wasm-util": "npm:^0.10.1"
- checksum: 10c0/af48168c6e13c970498fda3ce7238234a906bc69dd474dc9abd560cdf8a7dea6410147afec8f0191a1d19767c8347d8ec0125a8a93225312f7ac37e06e8c15ad
+ checksum: 10c0/ee351052123bfc635c4cef03ac273a686522394ccd513b1e5b7b3823cecd6abb4a31f23a3a962933192b87eb7b7c3eb3def7748bd410edc66f932d90cf44e9ab
languageName: node
linkType: hard
@@ -1091,42 +1323,43 @@ __metadata:
languageName: node
linkType: hard
-"@nuxt/cli@npm:^3.28.0":
- version: 3.28.0
- resolution: "@nuxt/cli@npm:3.28.0"
+"@nuxt/cli@npm:^3.31.1":
+ version: 3.31.3
+ resolution: "@nuxt/cli@npm:3.31.3"
dependencies:
- c12: "npm:^3.2.0"
+ "@bomb.sh/tab": "npm:^0.0.10"
+ "@clack/prompts": "npm:1.0.0-alpha.8"
+ c12: "npm:^3.3.2"
citty: "npm:^0.1.6"
- clipboardy: "npm:^4.0.0"
confbox: "npm:^0.2.2"
consola: "npm:^3.4.2"
+ copy-paste: "npm:^2.2.0"
+ debug: "npm:^4.4.3"
defu: "npm:^6.1.4"
- exsolve: "npm:^1.0.7"
+ exsolve: "npm:^1.0.8"
fuse.js: "npm:^7.1.0"
- get-port-please: "npm:^3.2.0"
giget: "npm:^2.0.0"
- h3: "npm:^1.15.4"
- httpxy: "npm:^0.1.7"
- jiti: "npm:^2.5.1"
+ jiti: "npm:^2.6.1"
listhen: "npm:^1.9.0"
- nypm: "npm:^0.6.1"
- ofetch: "npm:^1.4.1"
+ nypm: "npm:^0.6.2"
+ ofetch: "npm:^1.5.1"
ohash: "npm:^2.0.11"
pathe: "npm:^2.0.3"
- perfect-debounce: "npm:^1.0.0"
- pkg-types: "npm:^2.2.0"
+ perfect-debounce: "npm:^2.0.0"
+ pkg-types: "npm:^2.3.0"
scule: "npm:^1.3.0"
- semver: "npm:^7.7.2"
- std-env: "npm:^3.9.0"
- tinyexec: "npm:^1.0.1"
+ semver: "npm:^7.7.3"
+ srvx: "npm:^0.9.8"
+ std-env: "npm:^3.10.0"
+ tinyexec: "npm:^1.0.2"
ufo: "npm:^1.6.1"
- youch: "npm:^4.1.0-beta.11"
+ youch: "npm:^4.1.0-beta.13"
bin:
nuxi: bin/nuxi.mjs
nuxi-ng: bin/nuxi.mjs
nuxt: bin/nuxi.mjs
nuxt-cli: bin/nuxi.mjs
- checksum: 10c0/c5bea49c2dc0c100ba0d14e25a94b79283314a78665eb4dfa82317e3c866525bbe1146a112ff855f6aea7a2f039aedc5d94392d60b678f7932a4e7e00d34598d
+ checksum: 10c0/05a0f472da7b4d24d5bf13e34c8fa34395f60c4467bbc6d12c03858bce2e78076e2283db9dedfbd32f90a9f3b73757fe831e44801b4295f3361d7cdb692c164e
languageName: node
linkType: hard
@@ -1137,7 +1370,19 @@ __metadata:
languageName: node
linkType: hard
-"@nuxt/devtools-kit@npm:2.6.5, @nuxt/devtools-kit@npm:^2.4.0":
+"@nuxt/devtools-kit@npm:3.1.1":
+ version: 3.1.1
+ resolution: "@nuxt/devtools-kit@npm:3.1.1"
+ dependencies:
+ "@nuxt/kit": "npm:^4.2.1"
+ execa: "npm:^8.0.1"
+ peerDependencies:
+ vite: ">=6.0"
+ checksum: 10c0/10fa47bad38e7e33b4677bfae137597e3e30e84b06e300d31e55d41ba1214ee7dd8b6a012cff127d64dec02b21d3925bd2a45bb540d5ff85ede1ef305dc1b728
+ languageName: node
+ linkType: hard
+
+"@nuxt/devtools-kit@npm:^2.4.0":
version: 2.6.5
resolution: "@nuxt/devtools-kit@npm:2.6.5"
dependencies:
@@ -1149,65 +1394,69 @@ __metadata:
languageName: node
linkType: hard
-"@nuxt/devtools-wizard@npm:2.6.5":
- version: 2.6.5
- resolution: "@nuxt/devtools-wizard@npm:2.6.5"
+"@nuxt/devtools-wizard@npm:3.1.1":
+ version: 3.1.1
+ resolution: "@nuxt/devtools-wizard@npm:3.1.1"
dependencies:
consola: "npm:^3.4.2"
diff: "npm:^8.0.2"
execa: "npm:^8.0.1"
- magicast: "npm:^0.3.5"
+ magicast: "npm:^0.5.1"
pathe: "npm:^2.0.3"
pkg-types: "npm:^2.3.0"
prompts: "npm:^2.4.2"
- semver: "npm:^7.7.2"
+ semver: "npm:^7.7.3"
bin:
devtools-wizard: cli.mjs
- checksum: 10c0/79ba4ede07175e0b46da49991b10b9ec82970971c0e48833178693cb4f94ea0b24d8b0931a845b151fac9fbd00d121fb843328de1ff72d286639582ddbb544c5
+ checksum: 10c0/b12dd20fe7f91bb9a034dbcf7588558b004f94f4a3cc7be09276cfaf9d29a69a50086663910c0f54238f3250d8543797168cc69614850c6f32723e461c538db0
languageName: node
linkType: hard
-"@nuxt/devtools@npm:^2.6.3":
- version: 2.6.5
- resolution: "@nuxt/devtools@npm:2.6.5"
+"@nuxt/devtools@npm:^3.1.1":
+ version: 3.1.1
+ resolution: "@nuxt/devtools@npm:3.1.1"
dependencies:
- "@nuxt/devtools-kit": "npm:2.6.5"
- "@nuxt/devtools-wizard": "npm:2.6.5"
- "@nuxt/kit": "npm:^3.19.2"
- "@vue/devtools-core": "npm:^7.7.7"
- "@vue/devtools-kit": "npm:^7.7.7"
- birpc: "npm:^2.5.0"
+ "@nuxt/devtools-kit": "npm:3.1.1"
+ "@nuxt/devtools-wizard": "npm:3.1.1"
+ "@nuxt/kit": "npm:^4.2.1"
+ "@vue/devtools-core": "npm:^8.0.5"
+ "@vue/devtools-kit": "npm:^8.0.5"
+ birpc: "npm:^2.8.0"
consola: "npm:^3.4.2"
destr: "npm:^2.0.5"
error-stack-parser-es: "npm:^1.0.5"
execa: "npm:^8.0.1"
- fast-npm-meta: "npm:^0.4.6"
+ fast-npm-meta: "npm:^0.4.7"
get-port-please: "npm:^3.2.0"
hookable: "npm:^5.5.3"
- image-meta: "npm:^0.2.1"
+ image-meta: "npm:^0.2.2"
is-installed-globally: "npm:^1.0.0"
- launch-editor: "npm:^2.11.1"
+ launch-editor: "npm:^2.12.0"
local-pkg: "npm:^1.1.2"
- magicast: "npm:^0.3.5"
+ magicast: "npm:^0.5.1"
nypm: "npm:^0.6.2"
ohash: "npm:^2.0.11"
pathe: "npm:^2.0.3"
- perfect-debounce: "npm:^1.0.0"
+ perfect-debounce: "npm:^2.0.0"
pkg-types: "npm:^2.3.0"
- semver: "npm:^7.7.2"
- simple-git: "npm:^3.28.0"
+ semver: "npm:^7.7.3"
+ simple-git: "npm:^3.30.0"
sirv: "npm:^3.0.2"
structured-clone-es: "npm:^1.0.0"
tinyglobby: "npm:^0.2.15"
vite-plugin-inspect: "npm:^11.3.3"
- vite-plugin-vue-tracer: "npm:^1.0.0"
+ vite-plugin-vue-tracer: "npm:^1.1.3"
which: "npm:^5.0.0"
ws: "npm:^8.18.3"
peerDependencies:
+ "@vitejs/devtools": "*"
vite: ">=6.0"
+ peerDependenciesMeta:
+ "@vitejs/devtools":
+ optional: true
bin:
devtools: cli.mjs
- checksum: 10c0/5708c443b438cf98dc9cb14e1cdb534a18eec336c84c1e9d369cce03c32b9e4e1747a9c11d98a53fa27850c12c68ae6c1c5ba60929eb24b402cf131c1050baac
+ checksum: 10c0/369914f0f6d1b964521c8b47a393edf05301e6d4eff91ef93a36535bf04c89c051a9c563500e2625e335825e29efef4f1bc469286ef8863a15400ff8afb9a560
languageName: node
linkType: hard
@@ -1239,18 +1488,18 @@ __metadata:
languageName: node
linkType: hard
-"@nuxt/kit@npm:4.1.2":
- version: 4.1.2
- resolution: "@nuxt/kit@npm:4.1.2"
+"@nuxt/kit@npm:4.2.2, @nuxt/kit@npm:^4.2.1":
+ version: 4.2.2
+ resolution: "@nuxt/kit@npm:4.2.2"
dependencies:
- c12: "npm:^3.2.0"
+ c12: "npm:^3.3.2"
consola: "npm:^3.4.2"
defu: "npm:^6.1.4"
destr: "npm:^2.0.5"
errx: "npm:^0.1.0"
- exsolve: "npm:^1.0.7"
+ exsolve: "npm:^1.0.8"
ignore: "npm:^7.0.5"
- jiti: "npm:^2.5.1"
+ jiti: "npm:^2.6.1"
klona: "npm:^2.0.6"
mlly: "npm:^1.8.0"
ohash: "npm:^2.0.11"
@@ -1258,14 +1507,12 @@ __metadata:
pkg-types: "npm:^2.3.0"
rc9: "npm:^2.1.2"
scule: "npm:^1.3.0"
- semver: "npm:^7.7.2"
- std-env: "npm:^3.9.0"
+ semver: "npm:^7.7.3"
tinyglobby: "npm:^0.2.15"
ufo: "npm:^1.6.1"
unctx: "npm:^2.4.1"
- unimport: "npm:^5.2.0"
untyped: "npm:^2.0.0"
- checksum: 10c0/96f3b109e198d2b04840e67e3dfa8cc88097a24eb220e85376412d33a29f0ea9d51ea428c75d49d755ccab9b942bd6cea2914ac0660a3c5df9ac4f755644877a
+ checksum: 10c0/0954fe691f0f416a654477da81310c3ea4d174de755b8c09a542f9fc33606a294649a6888a6a0267360e3765a3256573cc00d89319882f0a98ae306ec34f898b
languageName: node
linkType: hard
@@ -1300,18 +1547,52 @@ __metadata:
languageName: node
linkType: hard
-"@nuxt/schema@npm:4.1.2":
- version: 4.1.2
- resolution: "@nuxt/schema@npm:4.1.2"
+"@nuxt/nitro-server@npm:4.2.2":
+ version: 4.2.2
+ resolution: "@nuxt/nitro-server@npm:4.2.2"
dependencies:
- "@vue/shared": "npm:^3.5.21"
+ "@nuxt/devalue": "npm:^2.0.2"
+ "@nuxt/kit": "npm:4.2.2"
+ "@unhead/vue": "npm:^2.0.19"
+ "@vue/shared": "npm:^3.5.25"
consola: "npm:^3.4.2"
defu: "npm:^6.1.4"
+ destr: "npm:^2.0.5"
+ devalue: "npm:^5.6.0"
+ errx: "npm:^0.1.0"
+ escape-string-regexp: "npm:^5.0.0"
+ exsolve: "npm:^1.0.8"
+ h3: "npm:^1.15.4"
+ impound: "npm:^1.0.0"
+ klona: "npm:^2.0.6"
+ mocked-exports: "npm:^0.1.1"
+ nitropack: "npm:^2.12.9"
+ pathe: "npm:^2.0.3"
+ pkg-types: "npm:^2.3.0"
+ radix3: "npm:^1.1.2"
+ std-env: "npm:^3.10.0"
+ ufo: "npm:^1.6.1"
+ unctx: "npm:^2.4.1"
+ unstorage: "npm:^1.17.3"
+ vue: "npm:^3.5.25"
+ vue-bundle-renderer: "npm:^2.2.0"
+ vue-devtools-stub: "npm:^0.1.0"
+ peerDependencies:
+ nuxt: ^4.2.2
+ checksum: 10c0/b6c82de2e7375bc3214c2418b39620d6e4369a24d8908d2627fc9d43af990dc34913ac32f9c773cc6372f310b70ab094a3996a49bfe7b37cce214f0027548677
+ languageName: node
+ linkType: hard
+
+"@nuxt/schema@npm:4.2.2":
+ version: 4.2.2
+ resolution: "@nuxt/schema@npm:4.2.2"
+ dependencies:
+ "@vue/shared": "npm:^3.5.25"
+ defu: "npm:^6.1.4"
pathe: "npm:^2.0.3"
pkg-types: "npm:^2.3.0"
- std-env: "npm:^3.9.0"
- ufo: "npm:1.6.1"
- checksum: 10c0/fd8a4c4bc3a9c23773ea15d90bd99ea93565541c4ec6c2e33cc08e5b3bb6f17d62cb62e2989f1e3c20e6b67b2902262b9c776fac373c765087c5b0bf162d065d
+ std-env: "npm:^3.10.0"
+ checksum: 10c0/ca066a74fb922988a95d0cf775e2c5b472db8cc7d83210ae7253466323ad50353b0a35dabea754a2a35a6718cd5902208c3c85777017cb3bb180732227700a65
languageName: node
linkType: hard
@@ -1337,369 +1618,375 @@ __metadata:
languageName: node
linkType: hard
-"@nuxt/vite-builder@npm:4.1.2":
- version: 4.1.2
- resolution: "@nuxt/vite-builder@npm:4.1.2"
+"@nuxt/vite-builder@npm:4.2.2":
+ version: 4.2.2
+ resolution: "@nuxt/vite-builder@npm:4.2.2"
dependencies:
- "@nuxt/kit": "npm:4.1.2"
- "@rollup/plugin-replace": "npm:^6.0.2"
- "@vitejs/plugin-vue": "npm:^6.0.1"
- "@vitejs/plugin-vue-jsx": "npm:^5.1.1"
- autoprefixer: "npm:^10.4.21"
+ "@nuxt/kit": "npm:4.2.2"
+ "@rollup/plugin-replace": "npm:^6.0.3"
+ "@vitejs/plugin-vue": "npm:^6.0.2"
+ "@vitejs/plugin-vue-jsx": "npm:^5.1.2"
+ autoprefixer: "npm:^10.4.22"
consola: "npm:^3.4.2"
- cssnano: "npm:^7.1.1"
+ cssnano: "npm:^7.1.2"
defu: "npm:^6.1.4"
- esbuild: "npm:^0.25.9"
+ esbuild: "npm:^0.27.1"
escape-string-regexp: "npm:^5.0.0"
- exsolve: "npm:^1.0.7"
+ exsolve: "npm:^1.0.8"
get-port-please: "npm:^3.2.0"
h3: "npm:^1.15.4"
- jiti: "npm:^2.5.1"
- knitwork: "npm:^1.2.0"
- magic-string: "npm:^0.30.19"
+ jiti: "npm:^2.6.1"
+ knitwork: "npm:^1.3.0"
+ magic-string: "npm:^0.30.21"
mlly: "npm:^1.8.0"
mocked-exports: "npm:^0.1.1"
pathe: "npm:^2.0.3"
pkg-types: "npm:^2.3.0"
postcss: "npm:^8.5.6"
- rollup-plugin-visualizer: "npm:^6.0.3"
- std-env: "npm:^3.9.0"
+ rollup-plugin-visualizer: "npm:^6.0.5"
+ seroval: "npm:^1.4.0"
+ std-env: "npm:^3.10.0"
ufo: "npm:^1.6.1"
- unenv: "npm:^2.0.0-rc.21"
- vite: "npm:^7.1.5"
- vite-node: "npm:^3.2.4"
- vite-plugin-checker: "npm:^0.10.3"
- vue-bundle-renderer: "npm:^2.1.2"
+ unenv: "npm:^2.0.0-rc.24"
+ vite: "npm:^7.2.7"
+ vite-node: "npm:^5.2.0"
+ vite-plugin-checker: "npm:^0.12.0"
+ vue-bundle-renderer: "npm:^2.2.0"
peerDependencies:
+ nuxt: 4.2.2
+ rolldown: ^1.0.0-beta.38
vue: ^3.3.4
- checksum: 10c0/16411ba1c7ecdd97770a5e39c661dfb319cf828e4baddbdfc190c1acbce032d2427e326a383acb157d59ae7e1f3a658c9a80eab8c663357a67a3b6fc2b68bfde
+ peerDependenciesMeta:
+ rolldown:
+ optional: true
+ checksum: 10c0/316042552f171cbc015882ea80201d3c5988b086fde547e919516d6257979897fc5585517ead3d5a3c8b76d64ffda987aa224fa6aa7a7ceafb6427403f100f00
languageName: node
linkType: hard
-"@oxc-minify/binding-android-arm64@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-android-arm64@npm:0.87.0"
+"@oxc-minify/binding-android-arm64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-android-arm64@npm:0.102.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
-"@oxc-minify/binding-darwin-arm64@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-darwin-arm64@npm:0.87.0"
+"@oxc-minify/binding-darwin-arm64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-darwin-arm64@npm:0.102.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@oxc-minify/binding-darwin-x64@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-darwin-x64@npm:0.87.0"
+"@oxc-minify/binding-darwin-x64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-darwin-x64@npm:0.102.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@oxc-minify/binding-freebsd-x64@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-freebsd-x64@npm:0.87.0"
+"@oxc-minify/binding-freebsd-x64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-freebsd-x64@npm:0.102.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"@oxc-minify/binding-linux-arm-gnueabihf@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-linux-arm-gnueabihf@npm:0.87.0"
+"@oxc-minify/binding-linux-arm-gnueabihf@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-linux-arm-gnueabihf@npm:0.102.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
-"@oxc-minify/binding-linux-arm-musleabihf@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-linux-arm-musleabihf@npm:0.87.0"
- conditions: os=linux & cpu=arm
- languageName: node
- linkType: hard
-
-"@oxc-minify/binding-linux-arm64-gnu@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-linux-arm64-gnu@npm:0.87.0"
+"@oxc-minify/binding-linux-arm64-gnu@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-linux-arm64-gnu@npm:0.102.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
-"@oxc-minify/binding-linux-arm64-musl@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-linux-arm64-musl@npm:0.87.0"
+"@oxc-minify/binding-linux-arm64-musl@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-linux-arm64-musl@npm:0.102.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
-"@oxc-minify/binding-linux-riscv64-gnu@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-linux-riscv64-gnu@npm:0.87.0"
+"@oxc-minify/binding-linux-riscv64-gnu@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-linux-riscv64-gnu@npm:0.102.0"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
-"@oxc-minify/binding-linux-s390x-gnu@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-linux-s390x-gnu@npm:0.87.0"
+"@oxc-minify/binding-linux-s390x-gnu@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-linux-s390x-gnu@npm:0.102.0"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
-"@oxc-minify/binding-linux-x64-gnu@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-linux-x64-gnu@npm:0.87.0"
+"@oxc-minify/binding-linux-x64-gnu@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-linux-x64-gnu@npm:0.102.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
-"@oxc-minify/binding-linux-x64-musl@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-linux-x64-musl@npm:0.87.0"
+"@oxc-minify/binding-linux-x64-musl@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-linux-x64-musl@npm:0.102.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
-"@oxc-minify/binding-wasm32-wasi@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-wasm32-wasi@npm:0.87.0"
+"@oxc-minify/binding-openharmony-arm64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-openharmony-arm64@npm:0.102.0"
+ conditions: os=openharmony & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@oxc-minify/binding-wasm32-wasi@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-wasm32-wasi@npm:0.102.0"
dependencies:
- "@napi-rs/wasm-runtime": "npm:^1.0.3"
+ "@napi-rs/wasm-runtime": "npm:^1.1.0"
conditions: cpu=wasm32
languageName: node
linkType: hard
-"@oxc-minify/binding-win32-arm64-msvc@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-win32-arm64-msvc@npm:0.87.0"
+"@oxc-minify/binding-win32-arm64-msvc@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-win32-arm64-msvc@npm:0.102.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@oxc-minify/binding-win32-x64-msvc@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-minify/binding-win32-x64-msvc@npm:0.87.0"
+"@oxc-minify/binding-win32-x64-msvc@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-minify/binding-win32-x64-msvc@npm:0.102.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
-"@oxc-parser/binding-android-arm64@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-android-arm64@npm:0.87.0"
+"@oxc-parser/binding-android-arm64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-android-arm64@npm:0.102.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
-"@oxc-parser/binding-darwin-arm64@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-darwin-arm64@npm:0.87.0"
+"@oxc-parser/binding-darwin-arm64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-darwin-arm64@npm:0.102.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@oxc-parser/binding-darwin-x64@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-darwin-x64@npm:0.87.0"
+"@oxc-parser/binding-darwin-x64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-darwin-x64@npm:0.102.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@oxc-parser/binding-freebsd-x64@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-freebsd-x64@npm:0.87.0"
+"@oxc-parser/binding-freebsd-x64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-freebsd-x64@npm:0.102.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"@oxc-parser/binding-linux-arm-gnueabihf@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-linux-arm-gnueabihf@npm:0.87.0"
+"@oxc-parser/binding-linux-arm-gnueabihf@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-linux-arm-gnueabihf@npm:0.102.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
-"@oxc-parser/binding-linux-arm-musleabihf@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-linux-arm-musleabihf@npm:0.87.0"
- conditions: os=linux & cpu=arm
- languageName: node
- linkType: hard
-
-"@oxc-parser/binding-linux-arm64-gnu@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-linux-arm64-gnu@npm:0.87.0"
+"@oxc-parser/binding-linux-arm64-gnu@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-linux-arm64-gnu@npm:0.102.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
-"@oxc-parser/binding-linux-arm64-musl@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-linux-arm64-musl@npm:0.87.0"
+"@oxc-parser/binding-linux-arm64-musl@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-linux-arm64-musl@npm:0.102.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
-"@oxc-parser/binding-linux-riscv64-gnu@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-linux-riscv64-gnu@npm:0.87.0"
+"@oxc-parser/binding-linux-riscv64-gnu@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-linux-riscv64-gnu@npm:0.102.0"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
-"@oxc-parser/binding-linux-s390x-gnu@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-linux-s390x-gnu@npm:0.87.0"
+"@oxc-parser/binding-linux-s390x-gnu@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-linux-s390x-gnu@npm:0.102.0"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
-"@oxc-parser/binding-linux-x64-gnu@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-linux-x64-gnu@npm:0.87.0"
+"@oxc-parser/binding-linux-x64-gnu@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-linux-x64-gnu@npm:0.102.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
-"@oxc-parser/binding-linux-x64-musl@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-linux-x64-musl@npm:0.87.0"
+"@oxc-parser/binding-linux-x64-musl@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-linux-x64-musl@npm:0.102.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
-"@oxc-parser/binding-wasm32-wasi@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-wasm32-wasi@npm:0.87.0"
+"@oxc-parser/binding-openharmony-arm64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-openharmony-arm64@npm:0.102.0"
+ conditions: os=openharmony & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@oxc-parser/binding-wasm32-wasi@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-wasm32-wasi@npm:0.102.0"
dependencies:
- "@napi-rs/wasm-runtime": "npm:^1.0.3"
+ "@napi-rs/wasm-runtime": "npm:^1.1.0"
conditions: cpu=wasm32
languageName: node
linkType: hard
-"@oxc-parser/binding-win32-arm64-msvc@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-win32-arm64-msvc@npm:0.87.0"
+"@oxc-parser/binding-win32-arm64-msvc@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-win32-arm64-msvc@npm:0.102.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@oxc-parser/binding-win32-x64-msvc@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-parser/binding-win32-x64-msvc@npm:0.87.0"
+"@oxc-parser/binding-win32-x64-msvc@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-parser/binding-win32-x64-msvc@npm:0.102.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
-"@oxc-project/types@npm:^0.87.0":
- version: 0.87.0
- resolution: "@oxc-project/types@npm:0.87.0"
- checksum: 10c0/5488baedf6c4c8864a700321fa0d59f89e1ac492addbd7583cd73a8cd824ed8564eb06a78fc0b79593fb61eb40c6c688920e8674bca313423f4f71b384559766
+"@oxc-project/types@npm:^0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-project/types@npm:0.102.0"
+ checksum: 10c0/ecb282b93d32f071aaaf2c5245c419fc0f65f4bf96a503573eda99ac6bdeb934e1f54f7b285659e23c79261858aad0506c6c928f1cbe52dfc378531a00e0516e
languageName: node
linkType: hard
-"@oxc-transform/binding-android-arm64@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-android-arm64@npm:0.87.0"
+"@oxc-transform/binding-android-arm64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-android-arm64@npm:0.102.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
-"@oxc-transform/binding-darwin-arm64@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-darwin-arm64@npm:0.87.0"
+"@oxc-transform/binding-darwin-arm64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-darwin-arm64@npm:0.102.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@oxc-transform/binding-darwin-x64@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-darwin-x64@npm:0.87.0"
+"@oxc-transform/binding-darwin-x64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-darwin-x64@npm:0.102.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@oxc-transform/binding-freebsd-x64@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-freebsd-x64@npm:0.87.0"
+"@oxc-transform/binding-freebsd-x64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-freebsd-x64@npm:0.102.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"@oxc-transform/binding-linux-arm-gnueabihf@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-linux-arm-gnueabihf@npm:0.87.0"
+"@oxc-transform/binding-linux-arm-gnueabihf@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-linux-arm-gnueabihf@npm:0.102.0"
conditions: os=linux & cpu=arm
languageName: node
linkType: hard
-"@oxc-transform/binding-linux-arm-musleabihf@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-linux-arm-musleabihf@npm:0.87.0"
- conditions: os=linux & cpu=arm
- languageName: node
- linkType: hard
-
-"@oxc-transform/binding-linux-arm64-gnu@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-linux-arm64-gnu@npm:0.87.0"
+"@oxc-transform/binding-linux-arm64-gnu@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-linux-arm64-gnu@npm:0.102.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
-"@oxc-transform/binding-linux-arm64-musl@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-linux-arm64-musl@npm:0.87.0"
+"@oxc-transform/binding-linux-arm64-musl@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-linux-arm64-musl@npm:0.102.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
-"@oxc-transform/binding-linux-riscv64-gnu@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-linux-riscv64-gnu@npm:0.87.0"
+"@oxc-transform/binding-linux-riscv64-gnu@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-linux-riscv64-gnu@npm:0.102.0"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
-"@oxc-transform/binding-linux-s390x-gnu@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-linux-s390x-gnu@npm:0.87.0"
+"@oxc-transform/binding-linux-s390x-gnu@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-linux-s390x-gnu@npm:0.102.0"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
-"@oxc-transform/binding-linux-x64-gnu@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-linux-x64-gnu@npm:0.87.0"
+"@oxc-transform/binding-linux-x64-gnu@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-linux-x64-gnu@npm:0.102.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
-"@oxc-transform/binding-linux-x64-musl@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-linux-x64-musl@npm:0.87.0"
+"@oxc-transform/binding-linux-x64-musl@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-linux-x64-musl@npm:0.102.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
-"@oxc-transform/binding-wasm32-wasi@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-wasm32-wasi@npm:0.87.0"
+"@oxc-transform/binding-openharmony-arm64@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-openharmony-arm64@npm:0.102.0"
+ conditions: os=openharmony & cpu=arm64
+ languageName: node
+ linkType: hard
+
+"@oxc-transform/binding-wasm32-wasi@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-wasm32-wasi@npm:0.102.0"
dependencies:
- "@napi-rs/wasm-runtime": "npm:^1.0.3"
+ "@napi-rs/wasm-runtime": "npm:^1.1.0"
conditions: cpu=wasm32
languageName: node
linkType: hard
-"@oxc-transform/binding-win32-arm64-msvc@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-win32-arm64-msvc@npm:0.87.0"
+"@oxc-transform/binding-win32-arm64-msvc@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-win32-arm64-msvc@npm:0.102.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@oxc-transform/binding-win32-x64-msvc@npm:0.87.0":
- version: 0.87.0
- resolution: "@oxc-transform/binding-win32-x64-msvc@npm:0.87.0"
+"@oxc-transform/binding-win32-x64-msvc@npm:0.102.0":
+ version: 0.102.0
+ resolution: "@oxc-transform/binding-win32-x64-msvc@npm:0.102.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
@@ -1896,14 +2183,14 @@ __metadata:
languageName: node
linkType: hard
-"@poppinss/dumper@npm:^0.6.4":
- version: 0.6.4
- resolution: "@poppinss/dumper@npm:0.6.4"
+"@poppinss/dumper@npm:^0.6.5":
+ version: 0.6.5
+ resolution: "@poppinss/dumper@npm:0.6.5"
dependencies:
"@poppinss/colors": "npm:^4.1.5"
"@sindresorhus/is": "npm:^7.0.2"
supports-color: "npm:^10.0.0"
- checksum: 10c0/1eb1716af39fae7cc294f8fd60d10527c26bd82cd9e6438ffc71face9d6a198a3af713e7f73ef4800b1a19b99003467023ec2c5d308c38d3ba958a12d0a91989
+ checksum: 10c0/7a0916fe4ce543cac1e61f09218e5c88b903ad0d853301b790686c772b7f5c595a04beccbf13172e0c77dc64b132b27ad438b888816fd7f6128c816290f9dc1f
languageName: node
linkType: hard
@@ -2023,17 +2310,17 @@ __metadata:
languageName: node
linkType: hard
-"@rolldown/pluginutils@npm:1.0.0-beta.29":
- version: 1.0.0-beta.29
- resolution: "@rolldown/pluginutils@npm:1.0.0-beta.29"
- checksum: 10c0/6b53011bb93c83be617a5511197656991b06a2ffa8eb869af211cbb0aed8cc9a6cf48f0a6d0ec92c0daadb912fd74808a635a6a6477f97ca9effaf5606c77deb
+"@rolldown/pluginutils@npm:1.0.0-beta.53":
+ version: 1.0.0-beta.53
+ resolution: "@rolldown/pluginutils@npm:1.0.0-beta.53"
+ checksum: 10c0/e8b0a7eb76be22f6f103171f28072de821525a4e400454850516da91a7381957932ff0ce495f227bcb168e86815788b0c1d249ca9e34dca366a82c8825b714ce
languageName: node
linkType: hard
-"@rolldown/pluginutils@npm:^1.0.0-beta.34":
- version: 1.0.0-beta.40
- resolution: "@rolldown/pluginutils@npm:1.0.0-beta.40"
- checksum: 10c0/057c640a526e7ba0f4c6d379918665017aaf616e682393df1f112f6e103e738267d27a70015f08992bd19186d7627e4c096d37f03b87e7cc4aa0353430c40e42
+"@rolldown/pluginutils@npm:^1.0.0-beta.50":
+ version: 1.0.0-beta.9-commit.d91dfb5
+ resolution: "@rolldown/pluginutils@npm:1.0.0-beta.9-commit.d91dfb5"
+ checksum: 10c0/63fa64fdd98a2cc99f21dab5c1819ffec172d2282cbff5dcb1089a84d2bb5c556dc6af503e778058f4a038d1941c0179f677ceddd0e30f024b57c543f21042f0
languageName: node
linkType: hard
@@ -2049,9 +2336,9 @@ __metadata:
languageName: node
linkType: hard
-"@rollup/plugin-commonjs@npm:^28.0.6":
- version: 28.0.6
- resolution: "@rollup/plugin-commonjs@npm:28.0.6"
+"@rollup/plugin-commonjs@npm:^28.0.9":
+ version: 28.0.9
+ resolution: "@rollup/plugin-commonjs@npm:28.0.9"
dependencies:
"@rollup/pluginutils": "npm:^5.0.1"
commondir: "npm:^1.0.1"
@@ -2065,7 +2352,7 @@ __metadata:
peerDependenciesMeta:
rollup:
optional: true
- checksum: 10c0/67fa297384c2494c8f85df102c030e7f8ed8f600cfccdd1143266112ee4037d37faa1bda44a571dab35b48297342024551e995ad2f8a4d86da0aa1f33ec61868
+ checksum: 10c0/b7af70614a53c549a1ba1e9647879b644bcf44ec78850f04018b929f4ee414274f867fa438308409a06ef8a3a179ed24c25e4f8ef77eb341dfddd2b0cb88c389
languageName: node
linkType: hard
@@ -2099,9 +2386,9 @@ __metadata:
languageName: node
linkType: hard
-"@rollup/plugin-node-resolve@npm:^16.0.1":
- version: 16.0.1
- resolution: "@rollup/plugin-node-resolve@npm:16.0.1"
+"@rollup/plugin-node-resolve@npm:^16.0.3":
+ version: 16.0.3
+ resolution: "@rollup/plugin-node-resolve@npm:16.0.3"
dependencies:
"@rollup/pluginutils": "npm:^5.0.1"
"@types/resolve": "npm:1.20.2"
@@ -2113,13 +2400,13 @@ __metadata:
peerDependenciesMeta:
rollup:
optional: true
- checksum: 10c0/54d33282321492fafec29b49c66dd1efd90c72a24f9d1569dcb57a72ab8de8a782810f39fdb917b96ec6a598c18f3416588b419bf7af331793a010de1fe28c60
+ checksum: 10c0/5bafff8e51cd28b5b3b8f415c30a893f5bfdb1a54469e00b3dc6530f26051620f3dfa172f40544361948b46cc3070cb34fd44ade66d38c0677d74c846fbc58dc
languageName: node
linkType: hard
-"@rollup/plugin-replace@npm:^6.0.2":
- version: 6.0.2
- resolution: "@rollup/plugin-replace@npm:6.0.2"
+"@rollup/plugin-replace@npm:^6.0.2, @rollup/plugin-replace@npm:^6.0.3":
+ version: 6.0.3
+ resolution: "@rollup/plugin-replace@npm:6.0.3"
dependencies:
"@rollup/pluginutils": "npm:^5.0.1"
magic-string: "npm:^0.30.3"
@@ -2128,7 +2415,7 @@ __metadata:
peerDependenciesMeta:
rollup:
optional: true
- checksum: 10c0/71c0dea46f560c8dff59853446d43fa0e8258139a74d2af09fce5790d0540ff3d874c8fd9962cb049577d25327262bfc97485ef90b2a0a21bf28a9d3bd8c6d44
+ checksum: 10c0/93217c52fe86b03363bc534b5f07963ac4fd6b91f19f6070a66809b0c65a036b3b234624a65a8bfcc01a8dc0e42838feae03c021b0d1e5e91753c503c4d70cd6
languageName: node
linkType: hard
@@ -2164,156 +2451,156 @@ __metadata:
languageName: node
linkType: hard
-"@rollup/rollup-android-arm-eabi@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-android-arm-eabi@npm:4.52.3"
+"@rollup/rollup-android-arm-eabi@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-android-arm-eabi@npm:4.54.0"
conditions: os=android & cpu=arm
languageName: node
linkType: hard
-"@rollup/rollup-android-arm64@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-android-arm64@npm:4.52.3"
+"@rollup/rollup-android-arm64@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-android-arm64@npm:4.54.0"
conditions: os=android & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-darwin-arm64@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-darwin-arm64@npm:4.52.3"
+"@rollup/rollup-darwin-arm64@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-darwin-arm64@npm:4.54.0"
conditions: os=darwin & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-darwin-x64@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-darwin-x64@npm:4.52.3"
+"@rollup/rollup-darwin-x64@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-darwin-x64@npm:4.54.0"
conditions: os=darwin & cpu=x64
languageName: node
linkType: hard
-"@rollup/rollup-freebsd-arm64@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-freebsd-arm64@npm:4.52.3"
+"@rollup/rollup-freebsd-arm64@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-freebsd-arm64@npm:4.54.0"
conditions: os=freebsd & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-freebsd-x64@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-freebsd-x64@npm:4.52.3"
+"@rollup/rollup-freebsd-x64@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-freebsd-x64@npm:4.54.0"
conditions: os=freebsd & cpu=x64
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm-gnueabihf@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.52.3"
+"@rollup/rollup-linux-arm-gnueabihf@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-linux-arm-gnueabihf@npm:4.54.0"
conditions: os=linux & cpu=arm & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm-musleabihf@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.52.3"
+"@rollup/rollup-linux-arm-musleabihf@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-linux-arm-musleabihf@npm:4.54.0"
conditions: os=linux & cpu=arm & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm64-gnu@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.52.3"
+"@rollup/rollup-linux-arm64-gnu@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-linux-arm64-gnu@npm:4.54.0"
conditions: os=linux & cpu=arm64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-arm64-musl@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-linux-arm64-musl@npm:4.52.3"
+"@rollup/rollup-linux-arm64-musl@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-linux-arm64-musl@npm:4.54.0"
conditions: os=linux & cpu=arm64 & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-linux-loong64-gnu@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.52.3"
+"@rollup/rollup-linux-loong64-gnu@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-linux-loong64-gnu@npm:4.54.0"
conditions: os=linux & cpu=loong64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-ppc64-gnu@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.52.3"
+"@rollup/rollup-linux-ppc64-gnu@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-linux-ppc64-gnu@npm:4.54.0"
conditions: os=linux & cpu=ppc64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-riscv64-gnu@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.52.3"
+"@rollup/rollup-linux-riscv64-gnu@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-linux-riscv64-gnu@npm:4.54.0"
conditions: os=linux & cpu=riscv64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-riscv64-musl@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.52.3"
+"@rollup/rollup-linux-riscv64-musl@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-linux-riscv64-musl@npm:4.54.0"
conditions: os=linux & cpu=riscv64 & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-linux-s390x-gnu@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.52.3"
+"@rollup/rollup-linux-s390x-gnu@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-linux-s390x-gnu@npm:4.54.0"
conditions: os=linux & cpu=s390x & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-x64-gnu@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-linux-x64-gnu@npm:4.52.3"
+"@rollup/rollup-linux-x64-gnu@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-linux-x64-gnu@npm:4.54.0"
conditions: os=linux & cpu=x64 & libc=glibc
languageName: node
linkType: hard
-"@rollup/rollup-linux-x64-musl@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-linux-x64-musl@npm:4.52.3"
+"@rollup/rollup-linux-x64-musl@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-linux-x64-musl@npm:4.54.0"
conditions: os=linux & cpu=x64 & libc=musl
languageName: node
linkType: hard
-"@rollup/rollup-openharmony-arm64@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-openharmony-arm64@npm:4.52.3"
+"@rollup/rollup-openharmony-arm64@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-openharmony-arm64@npm:4.54.0"
conditions: os=openharmony & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-win32-arm64-msvc@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.52.3"
+"@rollup/rollup-win32-arm64-msvc@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-win32-arm64-msvc@npm:4.54.0"
conditions: os=win32 & cpu=arm64
languageName: node
linkType: hard
-"@rollup/rollup-win32-ia32-msvc@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.52.3"
+"@rollup/rollup-win32-ia32-msvc@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-win32-ia32-msvc@npm:4.54.0"
conditions: os=win32 & cpu=ia32
languageName: node
linkType: hard
-"@rollup/rollup-win32-x64-gnu@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-win32-x64-gnu@npm:4.52.3"
+"@rollup/rollup-win32-x64-gnu@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-win32-x64-gnu@npm:4.54.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
-"@rollup/rollup-win32-x64-msvc@npm:4.52.3":
- version: 4.52.3
- resolution: "@rollup/rollup-win32-x64-msvc@npm:4.52.3"
+"@rollup/rollup-win32-x64-msvc@npm:4.54.0":
+ version: 4.54.0
+ resolution: "@rollup/rollup-win32-x64-msvc@npm:4.54.0"
conditions: os=win32 & cpu=x64
languageName: node
linkType: hard
@@ -2325,10 +2612,10 @@ __metadata:
languageName: node
linkType: hard
-"@sindresorhus/merge-streams@npm:^2.1.0":
- version: 2.3.0
- resolution: "@sindresorhus/merge-streams@npm:2.3.0"
- checksum: 10c0/69ee906f3125fb2c6bb6ec5cdd84e8827d93b49b3892bce8b62267116cc7e197b5cccf20c160a1d32c26014ecd14470a72a5e3ee37a58f1d6dadc0db1ccf3894
+"@sindresorhus/merge-streams@npm:^4.0.0":
+ version: 4.0.0
+ resolution: "@sindresorhus/merge-streams@npm:4.0.0"
+ checksum: 10c0/482ee543629aa1933b332f811a1ae805a213681ecdd98c042b1c1b89387df63e7812248bb4df3910b02b3cc5589d3d73e4393f30e197c9dde18046ccd471fc6b
languageName: node
linkType: hard
@@ -2339,10 +2626,10 @@ __metadata:
languageName: node
linkType: hard
-"@speed-highlight/core@npm:^1.2.7":
- version: 1.2.7
- resolution: "@speed-highlight/core@npm:1.2.7"
- checksum: 10c0/33905da58b7e0f0857f3ec7c60a4d2e7bd7e25573dd8676de2dab555057e9873084fd2bb1d97c4629131a990f7e230cb7068045370a15c77c4412527776791d4
+"@speed-highlight/core@npm:^1.2.9":
+ version: 1.2.12
+ resolution: "@speed-highlight/core@npm:1.2.12"
+ checksum: 10c0/37613c7a031af3b239282cc09211cefc1c9e164df07110520d2116ae7b4741512c1905bf1e011706ee2e652cef24df834f2068c4c4fff71e0257ec22fa655ff2
languageName: node
linkType: hard
@@ -2905,21 +3192,21 @@ __metadata:
languageName: node
linkType: hard
-"@unhead/vue@npm:^2.0.14":
- version: 2.0.17
- resolution: "@unhead/vue@npm:2.0.17"
+"@unhead/vue@npm:^2.0.19":
+ version: 2.0.19
+ resolution: "@unhead/vue@npm:2.0.19"
dependencies:
hookable: "npm:^5.5.3"
- unhead: "npm:2.0.17"
+ unhead: "npm:2.0.19"
peerDependencies:
vue: ">=3.5.18"
- checksum: 10c0/b4fa62eb8565d98c570fa151add62fa3373a1c860862e146196488c938eff8b68adac35c65eb4297ed048e3c6265f861016f39c95dff818c30c962f38c058de4
+ checksum: 10c0/a8acb37e03a2ae0d2a59960c5c894d620e9d61c538e10e5dcc668c1333f3f6a4390aa88300c6c6ffd306276e6fef38fd93cb79d9d36f9fd79bdc206899281d1a
languageName: node
linkType: hard
-"@vercel/nft@npm:^0.30.1":
- version: 0.30.2
- resolution: "@vercel/nft@npm:0.30.2"
+"@vercel/nft@npm:^0.30.3":
+ version: 0.30.4
+ resolution: "@vercel/nft@npm:0.30.4"
dependencies:
"@mapbox/node-pre-gyp": "npm:^2.0.0"
"@rollup/pluginutils": "npm:^5.1.3"
@@ -2928,42 +3215,42 @@ __metadata:
async-sema: "npm:^3.1.1"
bindings: "npm:^1.4.0"
estree-walker: "npm:2.0.2"
- glob: "npm:^10.4.5"
+ glob: "npm:^10.5.0"
graceful-fs: "npm:^4.2.9"
node-gyp-build: "npm:^4.2.2"
picomatch: "npm:^4.0.2"
resolve-from: "npm:^5.0.0"
bin:
nft: out/cli.js
- checksum: 10c0/3c50e01c864958686b1c8872650ce0678e29c28e80a4d049373c6fbc3ecc8c8a77868682cab65151efd41d89503fdcf6578aaee6b6cc67f6e60bbb8599ab6e1d
+ checksum: 10c0/1d7e372377e5e5c5bd74bd691f1d95136753626f9832b09fb448de512a8996ed63cdfac7878bd1301389149edd685c60372d3b1d00a3c1491068fe56e47d4c64
languageName: node
linkType: hard
-"@vitejs/plugin-vue-jsx@npm:^5.1.1":
- version: 5.1.1
- resolution: "@vitejs/plugin-vue-jsx@npm:5.1.1"
+"@vitejs/plugin-vue-jsx@npm:^5.1.2":
+ version: 5.1.2
+ resolution: "@vitejs/plugin-vue-jsx@npm:5.1.2"
dependencies:
- "@babel/core": "npm:^7.28.3"
+ "@babel/core": "npm:^7.28.5"
"@babel/plugin-syntax-typescript": "npm:^7.27.1"
- "@babel/plugin-transform-typescript": "npm:^7.28.0"
- "@rolldown/pluginutils": "npm:^1.0.0-beta.34"
- "@vue/babel-plugin-jsx": "npm:^1.5.0"
+ "@babel/plugin-transform-typescript": "npm:^7.28.5"
+ "@rolldown/pluginutils": "npm:^1.0.0-beta.50"
+ "@vue/babel-plugin-jsx": "npm:^2.0.1"
peerDependencies:
vite: ^5.0.0 || ^6.0.0 || ^7.0.0
vue: ^3.0.0
- checksum: 10c0/990352bca64e887b76ec73ccdcecd2dffbdd29c5a5a83b21a7db248ceafa91718f105c31555d949e9604d4f9c5d83421275887a69e0fcecab9f2c846b470bf34
+ checksum: 10c0/555f47c558456233d2dfa6be54f26f71606367719e199c0c02b32ce2246b250f7bcb11277211d74e611dfb15b0e733bac86edd4b74081dc352633b8174eff5b6
languageName: node
linkType: hard
-"@vitejs/plugin-vue@npm:^6.0.1":
- version: 6.0.1
- resolution: "@vitejs/plugin-vue@npm:6.0.1"
+"@vitejs/plugin-vue@npm:^6.0.2":
+ version: 6.0.3
+ resolution: "@vitejs/plugin-vue@npm:6.0.3"
dependencies:
- "@rolldown/pluginutils": "npm:1.0.0-beta.29"
+ "@rolldown/pluginutils": "npm:1.0.0-beta.53"
peerDependencies:
- vite: ^5.0.0 || ^6.0.0 || ^7.0.0
+ vite: ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0
vue: ^3.2.25
- checksum: 10c0/6d11fa9637e1e76e16e1deebec35e04a08c302ce13ed794f1463e5251f17152c481e9534411faa31c56122f2a75490fac534fa6b4535f1d336d1d4e7ae37bdf6
+ checksum: 10c0/53fb6e4bbeab8703b05c7bb8ee80206eba19f7edfa4672c4ff577d3021af4bed492ca70faf7985e3f7c5a7938f43e4232d63af0905b67bade997a81d7b1d09bd
languageName: node
linkType: hard
@@ -2986,131 +3273,131 @@ __metadata:
languageName: node
linkType: hard
-"@volar/language-core@npm:2.4.23":
- version: 2.4.23
- resolution: "@volar/language-core@npm:2.4.23"
+"@volar/language-core@npm:2.4.27":
+ version: 2.4.27
+ resolution: "@volar/language-core@npm:2.4.27"
dependencies:
- "@volar/source-map": "npm:2.4.23"
- checksum: 10c0/1b8d60c7c0faa29ef5ec46dd2b673227592d0697753767e4df088f7c2d93843828116fe59472bb9d604ba653400be32a538e985730844b1af4f42a7075e62049
+ "@volar/source-map": "npm:2.4.27"
+ checksum: 10c0/8fe021ecb0654dde1e221bba4d456d681454fa06a4aff16d0b027d5a1b0514be72bf899c6a515d8e9254ffbd468690e296ffb4cae7e63f6a4ec359d5e8a718be
languageName: node
linkType: hard
-"@volar/source-map@npm:2.4.23":
- version: 2.4.23
- resolution: "@volar/source-map@npm:2.4.23"
- checksum: 10c0/08af690093b811d0a37bdd8d306755b4e7f1535b67625c26f6fa6eb9ae081e24c55dabc8231ce8856aa1b731a5ac137b3f0449b34c093923c3545afdbe462c7a
+"@volar/source-map@npm:2.4.27":
+ version: 2.4.27
+ resolution: "@volar/source-map@npm:2.4.27"
+ checksum: 10c0/717db4d98cf70a9a12fcde71fb92854d19d3aa0e62b7343865c7bb624a5f691579e5f8b8d33f851cf6bebb8a69de372d12586b6f66947ed65b9ad58fdad941bf
languageName: node
linkType: hard
-"@vue-macros/common@npm:3.0.0-beta.16":
- version: 3.0.0-beta.16
- resolution: "@vue-macros/common@npm:3.0.0-beta.16"
+"@vue-macros/common@npm:^3.1.1":
+ version: 3.1.1
+ resolution: "@vue-macros/common@npm:3.1.1"
dependencies:
- "@vue/compiler-sfc": "npm:^3.5.17"
- ast-kit: "npm:^2.1.1"
- local-pkg: "npm:^1.1.1"
- magic-string-ast: "npm:^1.0.0"
- unplugin-utils: "npm:^0.2.4"
+ "@vue/compiler-sfc": "npm:^3.5.22"
+ ast-kit: "npm:^2.1.2"
+ local-pkg: "npm:^1.1.2"
+ magic-string-ast: "npm:^1.0.2"
+ unplugin-utils: "npm:^0.3.0"
peerDependencies:
vue: ^2.7.0 || ^3.2.25
peerDependenciesMeta:
vue:
optional: true
- checksum: 10c0/615f3ac33d9f5d85d8661270d1c4e892c134cf2e8028f8317d9213ae44baaf7b0e3cb0a380d5b91b2c943098b0b11c2728bbcbfc54ff2c0337dd52ba78156269
+ checksum: 10c0/015fc0faa31a14c75fe28e38f4187dc05aa2f6d6bb5b3a0c19f6ae44b5f126a3814a41002c135c7cab11bed212138e5a08cd6ec699c8e0ad00d6760239608220
languageName: node
linkType: hard
-"@vue/babel-helper-vue-transform-on@npm:1.5.0":
- version: 1.5.0
- resolution: "@vue/babel-helper-vue-transform-on@npm:1.5.0"
- checksum: 10c0/848bb106349f446f6f3004bbf51505b9321bf6ffa2852b79ec7d28859e86279e6b022bf478f6239fe5d9d1cfc96849e7bdfa4add71b00f45459bf40e75496aea
+"@vue/babel-helper-vue-transform-on@npm:2.0.1":
+ version: 2.0.1
+ resolution: "@vue/babel-helper-vue-transform-on@npm:2.0.1"
+ checksum: 10c0/506a56668fbe44b44dfebc353bf7934e783262a6ab37fe84d00967759fb8d6d6d6e76067d7a139787776a34b4fdfaad69cfcc4d8d0f09516029434ea2aa6c6e6
languageName: node
linkType: hard
-"@vue/babel-plugin-jsx@npm:^1.5.0":
- version: 1.5.0
- resolution: "@vue/babel-plugin-jsx@npm:1.5.0"
+"@vue/babel-plugin-jsx@npm:^2.0.1":
+ version: 2.0.1
+ resolution: "@vue/babel-plugin-jsx@npm:2.0.1"
dependencies:
"@babel/helper-module-imports": "npm:^7.27.1"
"@babel/helper-plugin-utils": "npm:^7.27.1"
"@babel/plugin-syntax-jsx": "npm:^7.27.1"
"@babel/template": "npm:^7.27.2"
- "@babel/traverse": "npm:^7.28.0"
- "@babel/types": "npm:^7.28.2"
- "@vue/babel-helper-vue-transform-on": "npm:1.5.0"
- "@vue/babel-plugin-resolve-type": "npm:1.5.0"
- "@vue/shared": "npm:^3.5.18"
+ "@babel/traverse": "npm:^7.28.4"
+ "@babel/types": "npm:^7.28.4"
+ "@vue/babel-helper-vue-transform-on": "npm:2.0.1"
+ "@vue/babel-plugin-resolve-type": "npm:2.0.1"
+ "@vue/shared": "npm:^3.5.22"
peerDependencies:
"@babel/core": ^7.0.0-0
peerDependenciesMeta:
"@babel/core":
optional: true
- checksum: 10c0/83d0ee5c9ca8e38f3c716bb424a8df1dcb4996754ed41e80b5462ece95abf1687cdd4b532778ba4fc632a8404e930f33ac18943e8ce61c9af3580694ef0bcf3f
+ checksum: 10c0/29666bf7b859ff48e320032dbb042b58301972a4d5af575b8b28996a6065ac8741849bb4f3b99a267eca75c4dd11d7eedc8ce45bd0027351a44b5bf5f91efca0
languageName: node
linkType: hard
-"@vue/babel-plugin-resolve-type@npm:1.5.0":
- version: 1.5.0
- resolution: "@vue/babel-plugin-resolve-type@npm:1.5.0"
+"@vue/babel-plugin-resolve-type@npm:2.0.1":
+ version: 2.0.1
+ resolution: "@vue/babel-plugin-resolve-type@npm:2.0.1"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
"@babel/helper-module-imports": "npm:^7.27.1"
"@babel/helper-plugin-utils": "npm:^7.27.1"
- "@babel/parser": "npm:^7.28.0"
- "@vue/compiler-sfc": "npm:^3.5.18"
+ "@babel/parser": "npm:^7.28.4"
+ "@vue/compiler-sfc": "npm:^3.5.22"
peerDependencies:
"@babel/core": ^7.0.0-0
- checksum: 10c0/78235231cfc2a6d632adf23cb340cdd0760c787ab746fd7f8d8a88e46822a85c762f91a7544cad389f1f985893499b5066ddd6eb408dab903d9b2df66deac110
+ checksum: 10c0/ecbcf2c978ef1a414ea1aa2446cc753c61d964a262e2a212a2528d329df685df8f2b35c8f311b05915ba478e4ff6eb5fc7606100055074b66546d743ad682bc3
languageName: node
linkType: hard
-"@vue/compiler-core@npm:3.5.22":
- version: 3.5.22
- resolution: "@vue/compiler-core@npm:3.5.22"
+"@vue/compiler-core@npm:3.5.26":
+ version: 3.5.26
+ resolution: "@vue/compiler-core@npm:3.5.26"
dependencies:
- "@babel/parser": "npm:^7.28.4"
- "@vue/shared": "npm:3.5.22"
- entities: "npm:^4.5.0"
+ "@babel/parser": "npm:^7.28.5"
+ "@vue/shared": "npm:3.5.26"
+ entities: "npm:^7.0.0"
estree-walker: "npm:^2.0.2"
source-map-js: "npm:^1.2.1"
- checksum: 10c0/7575fdef8d2b69aa9a7f55ba237abe0ab86a855dba1048dc32b32e2e5212a66410f922603b1191a8fbbf6e0caee7efab0cea705516304eeb1108d3819a10b092
+ checksum: 10c0/7f777efb4157e81263672c3b62ade61831295ce9fbf29cd5ce25bf1a8f352171edaac622580297ad667acbc5aa403d48aa65f4bf6b1dbfd862844f12fb9a13cf
languageName: node
linkType: hard
-"@vue/compiler-dom@npm:3.5.22, @vue/compiler-dom@npm:^3.5.0":
- version: 3.5.22
- resolution: "@vue/compiler-dom@npm:3.5.22"
+"@vue/compiler-dom@npm:3.5.26, @vue/compiler-dom@npm:^3.5.0":
+ version: 3.5.26
+ resolution: "@vue/compiler-dom@npm:3.5.26"
dependencies:
- "@vue/compiler-core": "npm:3.5.22"
- "@vue/shared": "npm:3.5.22"
- checksum: 10c0/f853e7533a6e2f51321b5ce258c6ed2bdac8a294e833a61e87b00d3fdd36cd39e1045c03027c31d85f518422062e50085f1358a37d104ccf0866bc174a5c7b9a
+ "@vue/compiler-core": "npm:3.5.26"
+ "@vue/shared": "npm:3.5.26"
+ checksum: 10c0/39fe35374276467c63e299c1bd72558a65f534fe2a69404699bf3d5c0b4c39b459af6500f4d79b3b38cb0067760940ded5b4c29f021eccfec564eee36206b709
languageName: node
linkType: hard
-"@vue/compiler-sfc@npm:3.5.22, @vue/compiler-sfc@npm:^3.5.17, @vue/compiler-sfc@npm:^3.5.18":
- version: 3.5.22
- resolution: "@vue/compiler-sfc@npm:3.5.22"
+"@vue/compiler-sfc@npm:3.5.26, @vue/compiler-sfc@npm:^3.5.22":
+ version: 3.5.26
+ resolution: "@vue/compiler-sfc@npm:3.5.26"
dependencies:
- "@babel/parser": "npm:^7.28.4"
- "@vue/compiler-core": "npm:3.5.22"
- "@vue/compiler-dom": "npm:3.5.22"
- "@vue/compiler-ssr": "npm:3.5.22"
- "@vue/shared": "npm:3.5.22"
+ "@babel/parser": "npm:^7.28.5"
+ "@vue/compiler-core": "npm:3.5.26"
+ "@vue/compiler-dom": "npm:3.5.26"
+ "@vue/compiler-ssr": "npm:3.5.26"
+ "@vue/shared": "npm:3.5.26"
estree-walker: "npm:^2.0.2"
- magic-string: "npm:^0.30.19"
+ magic-string: "npm:^0.30.21"
postcss: "npm:^8.5.6"
source-map-js: "npm:^1.2.1"
- checksum: 10c0/662838a31f69cf6eedfcb5dc9f7f67a67ec6761645f2f09e6d2b5a4833c0e08a11fb960665d16519599e865e9a883490116e984132f8f7bb5d8ba07fca062ca5
+ checksum: 10c0/0d9fe747bc4ddbc69ad06de316e5ec4ba8aa374ea824f71c2c7d3659f08a88e2102e152e89196f131903b41b4c5731c2d05ee5f889afdca6596128fa0eedb913
languageName: node
linkType: hard
-"@vue/compiler-ssr@npm:3.5.22":
- version: 3.5.22
- resolution: "@vue/compiler-ssr@npm:3.5.22"
+"@vue/compiler-ssr@npm:3.5.26":
+ version: 3.5.26
+ resolution: "@vue/compiler-ssr@npm:3.5.26"
dependencies:
- "@vue/compiler-dom": "npm:3.5.22"
- "@vue/shared": "npm:3.5.22"
- checksum: 10c0/d27721b96784d078e410d978ed5e7c0a2fca10b8a8087d7cfc832baedf79de8b3d34d05def3e54d7baaca0f7583c7261628dca482ba4e8b3c908302e44a53b2f
+ "@vue/compiler-dom": "npm:3.5.26"
+ "@vue/shared": "npm:3.5.26"
+ checksum: 10c0/bcaece46af4c44be887cf3b944a40592bcaa928b9238151eaaba38cbe80cb667c4cc8c3a07e49d1f8b52c171345b484114b70e80bad5e75c0e3baccfc3e84870
languageName: node
linkType: hard
@@ -3121,113 +3408,108 @@ __metadata:
languageName: node
linkType: hard
-"@vue/devtools-core@npm:^7.7.7":
- version: 7.7.7
- resolution: "@vue/devtools-core@npm:7.7.7"
+"@vue/devtools-core@npm:^8.0.5":
+ version: 8.0.5
+ resolution: "@vue/devtools-core@npm:8.0.5"
dependencies:
- "@vue/devtools-kit": "npm:^7.7.7"
- "@vue/devtools-shared": "npm:^7.7.7"
+ "@vue/devtools-kit": "npm:^8.0.5"
+ "@vue/devtools-shared": "npm:^8.0.5"
mitt: "npm:^3.0.1"
- nanoid: "npm:^5.1.0"
+ nanoid: "npm:^5.1.5"
pathe: "npm:^2.0.3"
- vite-hot-client: "npm:^2.0.4"
+ vite-hot-client: "npm:^2.1.0"
peerDependencies:
vue: ^3.0.0
- checksum: 10c0/b66dd8ad5a881feca35ed73a9b18486d2e84f14a175d8eddc4b52152a38b0712b134992395f7b6ea505a360dfb71290df3f7b9300f851d8cb246bb8df80198db
+ checksum: 10c0/00737358cd1835d404c527097fb60d5e7a79ef4a56459440e72b630cf4854ec4bbf32cc92e020c106ffd0f4e194a6415ecd0fd90144f9a31769d17f1fd1028cd
languageName: node
linkType: hard
-"@vue/devtools-kit@npm:^7.7.7":
- version: 7.7.7
- resolution: "@vue/devtools-kit@npm:7.7.7"
+"@vue/devtools-kit@npm:^8.0.5":
+ version: 8.0.5
+ resolution: "@vue/devtools-kit@npm:8.0.5"
dependencies:
- "@vue/devtools-shared": "npm:^7.7.7"
- birpc: "npm:^2.3.0"
+ "@vue/devtools-shared": "npm:^8.0.5"
+ birpc: "npm:^2.6.1"
hookable: "npm:^5.5.3"
mitt: "npm:^3.0.1"
- perfect-debounce: "npm:^1.0.0"
+ perfect-debounce: "npm:^2.0.0"
speakingurl: "npm:^14.0.1"
superjson: "npm:^2.2.2"
- checksum: 10c0/78a6048af4b6b5f9c42ac2e415f3455792e20467ff9a96b3db02b6df108740e3f90c89bdf607f1bb44e13dd77ba007e6bc1f6ce44cb53b26286635a2706ecdcf
+ checksum: 10c0/6cf90e38b80be0d8b3876465fa8b42e834889f5e3c89ef94921167def5719b8c7968406aca960df9ef35e31b21c4c253d62886b5059e2a894bc2c4dad32975bb
languageName: node
linkType: hard
-"@vue/devtools-shared@npm:^7.7.7":
- version: 7.7.7
- resolution: "@vue/devtools-shared@npm:7.7.7"
+"@vue/devtools-shared@npm:^8.0.5":
+ version: 8.0.5
+ resolution: "@vue/devtools-shared@npm:8.0.5"
dependencies:
rfdc: "npm:^1.4.1"
- checksum: 10c0/f29df17a6f5e92f6c33477279e0a22cb986fc413504918b58cf7d9fb4d541ea9e3163a947cf63212dfc19dd30351abfe1de39a8907bfef446ed02f03c06a24c9
+ checksum: 10c0/e234bc5ea0e312dd3774599a0f566bc034abb5c90d053ec5355cea9bc66317096e2229c894d4249bd9b9e3976ad565b911026ee1f915cdcc21ce94c3ad65062e
languageName: node
linkType: hard
-"@vue/language-core@npm:^3.0.1":
- version: 3.1.0
- resolution: "@vue/language-core@npm:3.1.0"
+"@vue/language-core@npm:^3.1.8":
+ version: 3.2.1
+ resolution: "@vue/language-core@npm:3.2.1"
dependencies:
- "@volar/language-core": "npm:2.4.23"
+ "@volar/language-core": "npm:2.4.27"
"@vue/compiler-dom": "npm:^3.5.0"
"@vue/shared": "npm:^3.5.0"
alien-signals: "npm:^3.0.0"
muggle-string: "npm:^0.4.1"
path-browserify: "npm:^1.0.1"
picomatch: "npm:^4.0.2"
+ checksum: 10c0/d83021599d6efbd8a54e8f8ac0c8eed3af44ada111a5f403c0c44537adc66a6bf03668de5786828d41dc38226d8372e821be23df4cc0ea506155985440e74406
+ languageName: node
+ linkType: hard
+
+"@vue/reactivity@npm:3.5.26":
+ version: 3.5.26
+ resolution: "@vue/reactivity@npm:3.5.26"
+ dependencies:
+ "@vue/shared": "npm:3.5.26"
+ checksum: 10c0/0a2788897310590a38525cf672131744b68c3fec23b6d3b8744f418ec70e1c6a95aace86a81934a1818f8bba1c7aedd29972dbf68a431b9aeabc9b10e66e7530
+ languageName: node
+ linkType: hard
+
+"@vue/runtime-core@npm:3.5.26":
+ version: 3.5.26
+ resolution: "@vue/runtime-core@npm:3.5.26"
+ dependencies:
+ "@vue/reactivity": "npm:3.5.26"
+ "@vue/shared": "npm:3.5.26"
+ checksum: 10c0/6e2f2223c5843c379d0c6046e5e5a6ff9c8dac6377e3dc3f260ece0e86ba92c0783d75bc71ac1085035beb9ec528ed9834deb1a35af3c687430b5a6637f84265
+ languageName: node
+ linkType: hard
+
+"@vue/runtime-dom@npm:3.5.26":
+ version: 3.5.26
+ resolution: "@vue/runtime-dom@npm:3.5.26"
+ dependencies:
+ "@vue/reactivity": "npm:3.5.26"
+ "@vue/runtime-core": "npm:3.5.26"
+ "@vue/shared": "npm:3.5.26"
+ csstype: "npm:^3.2.3"
+ checksum: 10c0/7918c71082e7baf8803816cf793fb3037eb8451954d1b85adbdf1396ed66a0871f9282bb60b01e23563a80d1edbea7164b1470a5a5e97d0eb7a113f8315a16d3
+ languageName: node
+ linkType: hard
+
+"@vue/server-renderer@npm:3.5.26":
+ version: 3.5.26
+ resolution: "@vue/server-renderer@npm:3.5.26"
+ dependencies:
+ "@vue/compiler-ssr": "npm:3.5.26"
+ "@vue/shared": "npm:3.5.26"
peerDependencies:
- typescript: "*"
- peerDependenciesMeta:
- typescript:
- optional: true
- checksum: 10c0/e8ff90870416b56bccd12597984f4a96958013b6fe3b8d3031598fc5ac0dcd856112ce538d613b33fe7ee31d40dbf02c7835d44402c83344e32f690ae535de90
+ vue: 3.5.26
+ checksum: 10c0/edbacb0d5510403d24a045ffc6025f7c4701febe6bba033e7a2be02b382f206e13d95620ff07ec2ad01b571a4012b9f5c5eff81ee806b744e0a1ab176e1bd27a
languageName: node
linkType: hard
-"@vue/reactivity@npm:3.5.22":
- version: 3.5.22
- resolution: "@vue/reactivity@npm:3.5.22"
- dependencies:
- "@vue/shared": "npm:3.5.22"
- checksum: 10c0/1fecb06885110203f50574fff9e126844ebfd09d180aa16896782af29d1c30466d6ba290983e40ca977042482b493215afadf6b75ef1d86bb7f7919f0129f5c7
- languageName: node
- linkType: hard
-
-"@vue/runtime-core@npm:3.5.22":
- version: 3.5.22
- resolution: "@vue/runtime-core@npm:3.5.22"
- dependencies:
- "@vue/reactivity": "npm:3.5.22"
- "@vue/shared": "npm:3.5.22"
- checksum: 10c0/7d9d37f33faa4fc66a7964551004936f37cc73ab7da71459568f8df7420658c06615394d98d3304040c16ab3fe7fcaeb05b50e3842d68afe3e24dbab57733aef
- languageName: node
- linkType: hard
-
-"@vue/runtime-dom@npm:3.5.22":
- version: 3.5.22
- resolution: "@vue/runtime-dom@npm:3.5.22"
- dependencies:
- "@vue/reactivity": "npm:3.5.22"
- "@vue/runtime-core": "npm:3.5.22"
- "@vue/shared": "npm:3.5.22"
- csstype: "npm:^3.1.3"
- checksum: 10c0/e0d16ff44d154589d0a0607c07426fd90e60a8e859de0489ed49ac73eef634a9fa29dd78b261bf52a2a519ba32f191a46799cc92a36957c42a3c4b2ab1f20027
- languageName: node
- linkType: hard
-
-"@vue/server-renderer@npm:3.5.22":
- version: 3.5.22
- resolution: "@vue/server-renderer@npm:3.5.22"
- dependencies:
- "@vue/compiler-ssr": "npm:3.5.22"
- "@vue/shared": "npm:3.5.22"
- peerDependencies:
- vue: 3.5.22
- checksum: 10c0/154ea79c4735c02bf4788b6338495e60c1bf7d5ba69bfbd26a92ecb677ed653baafc276fe08249c441a784d2d03dd85d420ea8ed6803150d34b84ce8318362ba
- languageName: node
- linkType: hard
-
-"@vue/shared@npm:3.5.22, @vue/shared@npm:^3.5.0, @vue/shared@npm:^3.5.18, @vue/shared@npm:^3.5.21":
- version: 3.5.22
- resolution: "@vue/shared@npm:3.5.22"
- checksum: 10c0/5866eab1dd6caa949f4ae2da2a7bac69612b35e316a298785279fb4de101bfe89a3572db56448aa35023b01d069b80a664be4fe22847ce5e5fbc1990e5970ec5
+"@vue/shared@npm:3.5.26, @vue/shared@npm:^3.5.0, @vue/shared@npm:^3.5.22, @vue/shared@npm:^3.5.25":
+ version: 3.5.26
+ resolution: "@vue/shared@npm:3.5.26"
+ checksum: 10c0/176edf41858cdd3019fc063fda28a0a6f5c5299a350e09aebb19fbe352d5ca4f7fc18993bf749f07d06baa803030d31a9b8538eef852feb1ce5b3b5a99d5ef3c
languageName: node
linkType: hard
@@ -3420,23 +3702,23 @@ __metadata:
languageName: node
linkType: hard
-"ast-kit@npm:^2.1.1, ast-kit@npm:^2.1.2":
- version: 2.1.2
- resolution: "ast-kit@npm:2.1.2"
+"ast-kit@npm:^2.1.2, ast-kit@npm:^2.1.3":
+ version: 2.2.0
+ resolution: "ast-kit@npm:2.2.0"
dependencies:
- "@babel/parser": "npm:^7.28.0"
+ "@babel/parser": "npm:^7.28.5"
pathe: "npm:^2.0.3"
- checksum: 10c0/7034c2d98de971cd689f5e098837c08f4f1b96a4fab14ab8d54ddc3b877e5e677f6851bef7e1625f0c714196f85ba2a0417446afe571ae34db1a4e34d788b25c
+ checksum: 10c0/d885f3a4e9837e730451a667d26936eef34773d6e5ecacd771a3e9d1f82fdc45d38958ab35e18880e0cf667896604a599497c5186f2578cf73c0d802ed7fc697
languageName: node
linkType: hard
-"ast-walker-scope@npm:^0.8.1":
- version: 0.8.2
- resolution: "ast-walker-scope@npm:0.8.2"
+"ast-walker-scope@npm:^0.8.3":
+ version: 0.8.3
+ resolution: "ast-walker-scope@npm:0.8.3"
dependencies:
- "@babel/parser": "npm:^7.28.3"
- ast-kit: "npm:^2.1.2"
- checksum: 10c0/f86e0fd4b27353908deeb3dd90a050ef97006436d16d3088f5bb8681af6a16adb006bd3061505f7fa5e7b8b918f703113610f7f5665d44b2cb3c3ef9a4b4c518
+ "@babel/parser": "npm:^7.28.4"
+ ast-kit: "npm:^2.1.3"
+ checksum: 10c0/9c98bf1311e798ca95e33ea6315856c31b2870860175b7dd78f87bfacb3600b224350bcc23df511d3f9cae765ad254deea996302f4056b0ffc08909d7382bb24
languageName: node
linkType: hard
@@ -3454,21 +3736,20 @@ __metadata:
languageName: node
linkType: hard
-"autoprefixer@npm:^10.4.21":
- version: 10.4.21
- resolution: "autoprefixer@npm:10.4.21"
+"autoprefixer@npm:^10.4.22":
+ version: 10.4.23
+ resolution: "autoprefixer@npm:10.4.23"
dependencies:
- browserslist: "npm:^4.24.4"
- caniuse-lite: "npm:^1.0.30001702"
- fraction.js: "npm:^4.3.7"
- normalize-range: "npm:^0.1.2"
+ browserslist: "npm:^4.28.1"
+ caniuse-lite: "npm:^1.0.30001760"
+ fraction.js: "npm:^5.3.4"
picocolors: "npm:^1.1.1"
postcss-value-parser: "npm:^4.2.0"
peerDependencies:
postcss: ^8.1.0
bin:
autoprefixer: bin/autoprefixer
- checksum: 10c0/de5b71d26d0baff4bbfb3d59f7cf7114a6030c9eeb66167acf49a32c5b61c68e308f1e0f869d92334436a221035d08b51cd1b2f2c4689b8d955149423c16d4d4
+ checksum: 10c0/3765c5d0fa3e95fb2ebe9d5a6d4da0156f5d346c7ec9ac0fbf5c97c8139d0ca1e8743bf5dc1b4aa954467be6929fddf8498a3b6202d468d70b5f359f3b6af90f
languageName: node
linkType: hard
@@ -3514,12 +3795,12 @@ __metadata:
languageName: node
linkType: hard
-"baseline-browser-mapping@npm:^2.8.3":
- version: 2.8.9
- resolution: "baseline-browser-mapping@npm:2.8.9"
+"baseline-browser-mapping@npm:^2.9.0":
+ version: 2.9.11
+ resolution: "baseline-browser-mapping@npm:2.9.11"
bin:
baseline-browser-mapping: dist/cli.js
- checksum: 10c0/c54356eb90cf251f351708f151fa42d0331814c03baa7bdcc802767f721fd9fe069eea88ae42395984bfddcae0c2fba2e5ee25d7921ce7cdcefc2f47440673d4
+ checksum: 10c0/eba49fcc1b33ab994aeeb73a4848f2670e06a0886dd5b903689ae6f60d47e7f1bea9262dbb2548c48179e858f7eda2b82ddf941ae783b862f4dcc51085a246f2
languageName: node
linkType: hard
@@ -3539,10 +3820,10 @@ __metadata:
languageName: node
linkType: hard
-"birpc@npm:^2.3.0, birpc@npm:^2.4.0, birpc@npm:^2.5.0":
- version: 2.6.1
- resolution: "birpc@npm:2.6.1"
- checksum: 10c0/eda4a9fbf95ac7ac2112d7fc10db588dc9145d9d50ad91bb714f3f36d64dd1a5c5206ac17b5bc5c0d6fbdb48c63e110946b240ad1bb51eeca37ce161efdf2d06
+"birpc@npm:^2.4.0, birpc@npm:^2.6.1, birpc@npm:^2.8.0":
+ version: 2.9.0
+ resolution: "birpc@npm:2.9.0"
+ checksum: 10c0/2462d0d67061f95bae213b0b9b323a6643ff749f7457a25242897c99e31355f1bd522c17f83ecf57506351e3e28b4e38c12a39b8beddee2dd0cbf78f9b9876ce
languageName: node
linkType: hard
@@ -3597,18 +3878,18 @@ __metadata:
languageName: node
linkType: hard
-"browserslist@npm:^4.0.0, browserslist@npm:^4.24.0, browserslist@npm:^4.24.4, browserslist@npm:^4.25.1, browserslist@npm:^4.25.3":
- version: 4.26.2
- resolution: "browserslist@npm:4.26.2"
+"browserslist@npm:^4.0.0, browserslist@npm:^4.24.0, browserslist@npm:^4.25.1, browserslist@npm:^4.25.3, browserslist@npm:^4.27.0, browserslist@npm:^4.28.1":
+ version: 4.28.1
+ resolution: "browserslist@npm:4.28.1"
dependencies:
- baseline-browser-mapping: "npm:^2.8.3"
- caniuse-lite: "npm:^1.0.30001741"
- electron-to-chromium: "npm:^1.5.218"
- node-releases: "npm:^2.0.21"
- update-browserslist-db: "npm:^1.1.3"
+ baseline-browser-mapping: "npm:^2.9.0"
+ caniuse-lite: "npm:^1.0.30001759"
+ electron-to-chromium: "npm:^1.5.263"
+ node-releases: "npm:^2.0.27"
+ update-browserslist-db: "npm:^1.2.0"
bin:
browserslist: cli.js
- checksum: 10c0/1146339dad33fda77786b11ea07f1c40c48899edd897d73a9114ee0dbb1ee6475bb4abda263a678c104508bdca8e66760ff8e10be1947d3e20d34bae01d8b89b
+ checksum: 10c0/545a5fa9d7234e3777a7177ec1e9134bb2ba60a69e6b95683f6982b1473aad347c77c1264ccf2ac5dea609a9731fbfbda6b85782bdca70f80f86e28a402504bd
languageName: node
linkType: hard
@@ -3659,28 +3940,28 @@ __metadata:
languageName: node
linkType: hard
-"c12@npm:^3.2.0":
- version: 3.3.0
- resolution: "c12@npm:3.3.0"
+"c12@npm:^3.2.0, c12@npm:^3.3.1, c12@npm:^3.3.2":
+ version: 3.3.3
+ resolution: "c12@npm:3.3.3"
dependencies:
- chokidar: "npm:^4.0.3"
+ chokidar: "npm:^5.0.0"
confbox: "npm:^0.2.2"
defu: "npm:^6.1.4"
- dotenv: "npm:^17.2.2"
- exsolve: "npm:^1.0.7"
+ dotenv: "npm:^17.2.3"
+ exsolve: "npm:^1.0.8"
giget: "npm:^2.0.0"
- jiti: "npm:^2.5.1"
+ jiti: "npm:^2.6.1"
ohash: "npm:^2.0.11"
pathe: "npm:^2.0.3"
perfect-debounce: "npm:^2.0.0"
pkg-types: "npm:^2.3.0"
rc9: "npm:^2.1.2"
peerDependencies:
- magicast: ^0.3.5
+ magicast: "*"
peerDependenciesMeta:
magicast:
optional: true
- checksum: 10c0/759b82ada4e84222e26695d5928a6d5c672c7a1562d2a841ac8cf00bebee9bc531c69ffd6346da2b2d07f1524d241b8234948b8261a5fe8e2fa97b5c7acc4773
+ checksum: 10c0/5b2ac937175717df62fc74ce7fe38685ebd02b3fa94e9cc05be9630d3e5d7f1ec437413d23d63ec0d2eaffcfeda824fb14d3d0fab3df522e60a8b4b3e32a4a33
languageName: node
linkType: hard
@@ -3730,10 +4011,10 @@ __metadata:
languageName: node
linkType: hard
-"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001702, caniuse-lite@npm:^1.0.30001741":
- version: 1.0.30001745
- resolution: "caniuse-lite@npm:1.0.30001745"
- checksum: 10c0/646ca4b57baaa7a835cf7204c8a257490ee8e36364c04638212e3750c5e8ef45c39f352307e6205114487bcc179d42f5216f6dac146641b16a60b20b29d6f2a6
+"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001759, caniuse-lite@npm:^1.0.30001760":
+ version: 1.0.30001761
+ resolution: "caniuse-lite@npm:1.0.30001761"
+ checksum: 10c0/8ea4158ccd507b9c73c03b9b3b1b897e75d095c5753a131d0f36ef9b64c19a049174467842dd9e8bebe886ac27ed7a5b1d5adcaae5fe887716b07fc1103e100b
languageName: node
linkType: hard
@@ -3761,7 +4042,7 @@ __metadata:
eslint: "npm:^9.36.0"
eslint-plugin-format: "npm:^1.0.2"
mediasoup-client: "npm:^3.16.7"
- nuxt: "npm:^4.1.2"
+ nuxt: "npm:^4.2.2"
postcss: "npm:^8.5.6"
primeicons: "npm:^7.0.0"
primevue: "npm:^4.4.0"
@@ -3770,6 +4051,7 @@ __metadata:
tailwindcss: "npm:^4.1.14"
tailwindcss-primeui: "npm:^0.6.1"
typescript: "npm:^5.9.3"
+ ufo: "npm:^1.6.1"
vue: "npm:^3.5.22"
vue-router: "npm:^4.5.1"
languageName: unknown
@@ -3827,6 +4109,15 @@ __metadata:
languageName: node
linkType: hard
+"chokidar@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "chokidar@npm:5.0.0"
+ dependencies:
+ readdirp: "npm:^5.0.0"
+ checksum: 10c0/42fc907cb2a7ff5c9e220f84dae75380a77997f851c2a5e7865a2cf9ae45dd407a23557208cdcdbf3ac8c93341135a1748e4c48c31855f3bfa095e5159b6bdec
+ languageName: node
+ linkType: hard
+
"chownr@npm:^3.0.0":
version: 3.0.0
resolution: "chownr@npm:3.0.0"
@@ -4022,13 +4313,6 @@ __metadata:
languageName: node
linkType: hard
-"cookie@npm:^1.0.2":
- version: 1.0.2
- resolution: "cookie@npm:1.0.2"
- checksum: 10c0/fd25fe79e8fbcfcaf6aa61cd081c55d144eeeba755206c058682257cb38c4bd6795c6620de3f064c740695bb65b7949ebb1db7a95e4636efb8357a335ad3f54b
- languageName: node
- linkType: hard
-
"copy-anything@npm:^3.0.2":
version: 3.0.5
resolution: "copy-anything@npm:3.0.5"
@@ -4038,6 +4322,15 @@ __metadata:
languageName: node
linkType: hard
+"copy-paste@npm:^2.2.0":
+ version: 2.2.0
+ resolution: "copy-paste@npm:2.2.0"
+ dependencies:
+ iconv-lite: "npm:^0.4.8"
+ checksum: 10c0/19478195a75ef150a6f29ef9450bd95f3d1488ea00f70c655c98993156439e713725151ab132ef06b125cd8151f90f785b076a583fef6fae5e1f71f4283ac2e8
+ languageName: node
+ linkType: hard
+
"core-js-compat@npm:^3.44.0":
version: 3.45.1
resolution: "core-js-compat@npm:3.45.1"
@@ -4167,25 +4460,25 @@ __metadata:
languageName: node
linkType: hard
-"cssnano-preset-default@npm:^7.0.9":
- version: 7.0.9
- resolution: "cssnano-preset-default@npm:7.0.9"
+"cssnano-preset-default@npm:^7.0.10":
+ version: 7.0.10
+ resolution: "cssnano-preset-default@npm:7.0.10"
dependencies:
- browserslist: "npm:^4.25.1"
+ browserslist: "npm:^4.27.0"
css-declaration-sorter: "npm:^7.2.0"
cssnano-utils: "npm:^5.0.1"
postcss-calc: "npm:^10.1.1"
- postcss-colormin: "npm:^7.0.4"
- postcss-convert-values: "npm:^7.0.7"
- postcss-discard-comments: "npm:^7.0.4"
+ postcss-colormin: "npm:^7.0.5"
+ postcss-convert-values: "npm:^7.0.8"
+ postcss-discard-comments: "npm:^7.0.5"
postcss-discard-duplicates: "npm:^7.0.2"
postcss-discard-empty: "npm:^7.0.1"
postcss-discard-overridden: "npm:^7.0.1"
postcss-merge-longhand: "npm:^7.0.5"
- postcss-merge-rules: "npm:^7.0.6"
+ postcss-merge-rules: "npm:^7.0.7"
postcss-minify-font-values: "npm:^7.0.1"
postcss-minify-gradients: "npm:^7.0.1"
- postcss-minify-params: "npm:^7.0.4"
+ postcss-minify-params: "npm:^7.0.5"
postcss-minify-selectors: "npm:^7.0.5"
postcss-normalize-charset: "npm:^7.0.1"
postcss-normalize-display-values: "npm:^7.0.1"
@@ -4193,17 +4486,17 @@ __metadata:
postcss-normalize-repeat-style: "npm:^7.0.1"
postcss-normalize-string: "npm:^7.0.1"
postcss-normalize-timing-functions: "npm:^7.0.1"
- postcss-normalize-unicode: "npm:^7.0.4"
+ postcss-normalize-unicode: "npm:^7.0.5"
postcss-normalize-url: "npm:^7.0.1"
postcss-normalize-whitespace: "npm:^7.0.1"
postcss-ordered-values: "npm:^7.0.2"
- postcss-reduce-initial: "npm:^7.0.4"
+ postcss-reduce-initial: "npm:^7.0.5"
postcss-reduce-transforms: "npm:^7.0.1"
postcss-svgo: "npm:^7.1.0"
postcss-unique-selectors: "npm:^7.0.4"
peerDependencies:
postcss: ^8.4.32
- checksum: 10c0/5590f751596a8f782418a9dc72b8f365a9d53d3e42e606d9ce1db5f8ad74daee044b880e228565c36bfe701094738fa04f4f4429ad34087580d1e84b2a7b7ff9
+ checksum: 10c0/40803294c3a2d7dec919c5f0ecc2370d6abf5f6514875a27f58caf7f42cbb86c9ce32f72624a80d0b6289d70e2675312368bc1e4cc0d9e5c320172866b89681e
languageName: node
linkType: hard
@@ -4216,15 +4509,15 @@ __metadata:
languageName: node
linkType: hard
-"cssnano@npm:^7.1.1":
- version: 7.1.1
- resolution: "cssnano@npm:7.1.1"
+"cssnano@npm:^7.1.2":
+ version: 7.1.2
+ resolution: "cssnano@npm:7.1.2"
dependencies:
- cssnano-preset-default: "npm:^7.0.9"
+ cssnano-preset-default: "npm:^7.0.10"
lilconfig: "npm:^3.1.3"
peerDependencies:
postcss: ^8.4.32
- checksum: 10c0/d761e86277dabfa986a34de4c8c79c555b0982b66b9e80a4a4c60956b5d34ae94c5464d74ab8c222578ee5f78c157ff7310386827a0f9cb847263797f738b300
+ checksum: 10c0/3879ea5d3dd649b8dc1b96d3917c505895be6da9e7251b88f9d4a7567fcead95fdc0bd96482284df06997b08f0e36b9f917a2f6d6710d46186dd92dc953c6216
languageName: node
linkType: hard
@@ -4237,16 +4530,16 @@ __metadata:
languageName: node
linkType: hard
-"csstype@npm:^3.1.3":
- version: 3.1.3
- resolution: "csstype@npm:3.1.3"
- checksum: 10c0/80c089d6f7e0c5b2bd83cf0539ab41474198579584fa10d86d0cafe0642202343cbc119e076a0b1aece191989477081415d66c9fefbf3c957fc2fc4b7009f248
+"csstype@npm:^3.2.3":
+ version: 3.2.3
+ resolution: "csstype@npm:3.2.3"
+ checksum: 10c0/cd29c51e70fa822f1cecd8641a1445bed7063697469d35633b516e60fe8c1bde04b08f6c5b6022136bb669b64c63d4173af54864510fbb4ee23281801841a3ce
languageName: node
linkType: hard
-"db0@npm:^0.3.2":
- version: 0.3.2
- resolution: "db0@npm:0.3.2"
+"db0@npm:^0.3.4":
+ version: 0.3.4
+ resolution: "db0@npm:0.3.4"
peerDependencies:
"@electric-sql/pglite": "*"
"@libsql/client": "*"
@@ -4267,7 +4560,7 @@ __metadata:
optional: true
sqlite3:
optional: true
- checksum: 10c0/6d49955b5098dd9e8251907a3cc4c88bd575c4baf99201ed0a17ae78332bd856dd52a708b80dc89c55afddded035c7408d389ec9f5ddd3ea559dc7feae6b6dce
+ checksum: 10c0/cd069a39783b8a160180ba4ae1a9832cd063e4f5d269442c7e7dd3e5713965e01f4d11272d5c79699e9723f4c79ba67159e52ec34b4a61e7349609865f20a368
languageName: node
linkType: hard
@@ -4400,10 +4693,10 @@ __metadata:
languageName: node
linkType: hard
-"devalue@npm:^5.3.2":
- version: 5.3.2
- resolution: "devalue@npm:5.3.2"
- checksum: 10c0/2dab403779233224285afe4b30eaded038df10cb89b8f2c1e41dd855a8e6b634aa24175b87f64df665204bb9a6a6e7758d172682719b9c5cf3cef336ff9fa507
+"devalue@npm:^5.6.0":
+ version: 5.6.1
+ resolution: "devalue@npm:5.6.1"
+ checksum: 10c0/4dca0e800336003fd1e268c142adfe78f3539cda7384b4f69762a93e0dfc33e223b580251da0a6da4be44962958fcba5eadf122f9720e09f437b28904af9c43e
languageName: node
linkType: hard
@@ -4468,12 +4761,12 @@ __metadata:
languageName: node
linkType: hard
-"dot-prop@npm:^9.0.0":
- version: 9.0.0
- resolution: "dot-prop@npm:9.0.0"
+"dot-prop@npm:^10.1.0":
+ version: 10.1.0
+ resolution: "dot-prop@npm:10.1.0"
dependencies:
- type-fest: "npm:^4.18.2"
- checksum: 10c0/4bac49a2f559156811862ac92813906f70529c50da918eaab81b38dd869743c667d578e183607f5ae11e8ae2a02e43e98e32c8a37bc4cae76b04d5b576e3112f
+ type-fest: "npm:^5.0.0"
+ checksum: 10c0/b034a06f017909ed55c6c164ddea962ccdce3d88b9b092f7106a9b738116a4cd003db5d47a0c6e140e93adbf1922b5e3a147e3d4a124c8556862940446ba5f75
languageName: node
linkType: hard
@@ -4484,10 +4777,10 @@ __metadata:
languageName: node
linkType: hard
-"dotenv@npm:^17.2.2":
- version: 17.2.2
- resolution: "dotenv@npm:17.2.2"
- checksum: 10c0/be66513504590aff6eccb14167625aed9bd42ce80547f4fe5d195860211971a7060949b57108dfaeaf90658f79e40edccd3f233f0a978bff507b5b1565ae162b
+"dotenv@npm:^17.2.3":
+ version: 17.2.3
+ resolution: "dotenv@npm:17.2.3"
+ checksum: 10c0/c884403209f713214a1b64d4d1defa4934c2aa5b0002f5a670ae298a51e3c3ad3ba79dfee2f8df49f01ae74290fcd9acdb1ab1d09c7bfb42b539036108bb2ba0
languageName: node
linkType: hard
@@ -4512,10 +4805,10 @@ __metadata:
languageName: node
linkType: hard
-"electron-to-chromium@npm:^1.5.218":
- version: 1.5.227
- resolution: "electron-to-chromium@npm:1.5.227"
- checksum: 10c0/6b220ea024bcdd1560ffaca6b6b4c220d789b3e9c580c37509e8c176f369c93a4de8497a6e25cbfd9619ab9d129069368e4a4317dec0335d3a0cb61c2353e6f1
+"electron-to-chromium@npm:^1.5.263":
+ version: 1.5.267
+ resolution: "electron-to-chromium@npm:1.5.267"
+ checksum: 10c0/0732bdb891b657f2e43266a3db8cf86fff6cecdcc8d693a92beff214e136cb5c2ee7dc5945ed75fa1db16e16bad0c38695527a020d15f39e79084e0b2e447621
languageName: node
linkType: hard
@@ -4586,13 +4879,20 @@ __metadata:
languageName: node
linkType: hard
-"entities@npm:^4.2.0, entities@npm:^4.5.0":
+"entities@npm:^4.2.0":
version: 4.5.0
resolution: "entities@npm:4.5.0"
checksum: 10c0/5b039739f7621f5d1ad996715e53d964035f75ad3b9a4d38c6b3804bb226e282ffeae2443624d8fdd9c47d8e926ae9ac009c54671243f0c3294c26af7cc85250
languageName: node
linkType: hard
+"entities@npm:^7.0.0":
+ version: 7.0.0
+ resolution: "entities@npm:7.0.0"
+ checksum: 10c0/4e7cc40cd00b64adede81780fd85c0bd0a905e863b5ef0b01718028ffbc113886c281deb57e1ce0e13a6e349a2d404ff383c876673b81d6dc56e87bf3e5a022a
+ languageName: node
+ linkType: hard
+
"env-paths@npm:^2.2.0":
version: 2.2.1
resolution: "env-paths@npm:2.2.1"
@@ -4628,36 +4928,36 @@ __metadata:
languageName: node
linkType: hard
-"esbuild@npm:^0.25.0, esbuild@npm:^0.25.4, esbuild@npm:^0.25.9":
- version: 0.25.10
- resolution: "esbuild@npm:0.25.10"
+"esbuild@npm:^0.25.11, esbuild@npm:^0.25.4":
+ version: 0.25.12
+ resolution: "esbuild@npm:0.25.12"
dependencies:
- "@esbuild/aix-ppc64": "npm:0.25.10"
- "@esbuild/android-arm": "npm:0.25.10"
- "@esbuild/android-arm64": "npm:0.25.10"
- "@esbuild/android-x64": "npm:0.25.10"
- "@esbuild/darwin-arm64": "npm:0.25.10"
- "@esbuild/darwin-x64": "npm:0.25.10"
- "@esbuild/freebsd-arm64": "npm:0.25.10"
- "@esbuild/freebsd-x64": "npm:0.25.10"
- "@esbuild/linux-arm": "npm:0.25.10"
- "@esbuild/linux-arm64": "npm:0.25.10"
- "@esbuild/linux-ia32": "npm:0.25.10"
- "@esbuild/linux-loong64": "npm:0.25.10"
- "@esbuild/linux-mips64el": "npm:0.25.10"
- "@esbuild/linux-ppc64": "npm:0.25.10"
- "@esbuild/linux-riscv64": "npm:0.25.10"
- "@esbuild/linux-s390x": "npm:0.25.10"
- "@esbuild/linux-x64": "npm:0.25.10"
- "@esbuild/netbsd-arm64": "npm:0.25.10"
- "@esbuild/netbsd-x64": "npm:0.25.10"
- "@esbuild/openbsd-arm64": "npm:0.25.10"
- "@esbuild/openbsd-x64": "npm:0.25.10"
- "@esbuild/openharmony-arm64": "npm:0.25.10"
- "@esbuild/sunos-x64": "npm:0.25.10"
- "@esbuild/win32-arm64": "npm:0.25.10"
- "@esbuild/win32-ia32": "npm:0.25.10"
- "@esbuild/win32-x64": "npm:0.25.10"
+ "@esbuild/aix-ppc64": "npm:0.25.12"
+ "@esbuild/android-arm": "npm:0.25.12"
+ "@esbuild/android-arm64": "npm:0.25.12"
+ "@esbuild/android-x64": "npm:0.25.12"
+ "@esbuild/darwin-arm64": "npm:0.25.12"
+ "@esbuild/darwin-x64": "npm:0.25.12"
+ "@esbuild/freebsd-arm64": "npm:0.25.12"
+ "@esbuild/freebsd-x64": "npm:0.25.12"
+ "@esbuild/linux-arm": "npm:0.25.12"
+ "@esbuild/linux-arm64": "npm:0.25.12"
+ "@esbuild/linux-ia32": "npm:0.25.12"
+ "@esbuild/linux-loong64": "npm:0.25.12"
+ "@esbuild/linux-mips64el": "npm:0.25.12"
+ "@esbuild/linux-ppc64": "npm:0.25.12"
+ "@esbuild/linux-riscv64": "npm:0.25.12"
+ "@esbuild/linux-s390x": "npm:0.25.12"
+ "@esbuild/linux-x64": "npm:0.25.12"
+ "@esbuild/netbsd-arm64": "npm:0.25.12"
+ "@esbuild/netbsd-x64": "npm:0.25.12"
+ "@esbuild/openbsd-arm64": "npm:0.25.12"
+ "@esbuild/openbsd-x64": "npm:0.25.12"
+ "@esbuild/openharmony-arm64": "npm:0.25.12"
+ "@esbuild/sunos-x64": "npm:0.25.12"
+ "@esbuild/win32-arm64": "npm:0.25.12"
+ "@esbuild/win32-ia32": "npm:0.25.12"
+ "@esbuild/win32-x64": "npm:0.25.12"
dependenciesMeta:
"@esbuild/aix-ppc64":
optional: true
@@ -4713,7 +5013,96 @@ __metadata:
optional: true
bin:
esbuild: bin/esbuild
- checksum: 10c0/8ee5fdd43ed0d4092ce7f41577c63147f54049d5617763f0549c638bbe939e8adaa8f1a2728adb63417eb11df51956b7b0d8eb88ee08c27ad1d42960256158fa
+ checksum: 10c0/c205357531423220a9de8e1e6c6514242bc9b1666e762cd67ccdf8fdfdc3f1d0bd76f8d9383958b97ad4c953efdb7b6e8c1f9ca5951cd2b7c5235e8755b34a6b
+ languageName: node
+ linkType: hard
+
+"esbuild@npm:^0.27.0, esbuild@npm:^0.27.1":
+ version: 0.27.2
+ resolution: "esbuild@npm:0.27.2"
+ dependencies:
+ "@esbuild/aix-ppc64": "npm:0.27.2"
+ "@esbuild/android-arm": "npm:0.27.2"
+ "@esbuild/android-arm64": "npm:0.27.2"
+ "@esbuild/android-x64": "npm:0.27.2"
+ "@esbuild/darwin-arm64": "npm:0.27.2"
+ "@esbuild/darwin-x64": "npm:0.27.2"
+ "@esbuild/freebsd-arm64": "npm:0.27.2"
+ "@esbuild/freebsd-x64": "npm:0.27.2"
+ "@esbuild/linux-arm": "npm:0.27.2"
+ "@esbuild/linux-arm64": "npm:0.27.2"
+ "@esbuild/linux-ia32": "npm:0.27.2"
+ "@esbuild/linux-loong64": "npm:0.27.2"
+ "@esbuild/linux-mips64el": "npm:0.27.2"
+ "@esbuild/linux-ppc64": "npm:0.27.2"
+ "@esbuild/linux-riscv64": "npm:0.27.2"
+ "@esbuild/linux-s390x": "npm:0.27.2"
+ "@esbuild/linux-x64": "npm:0.27.2"
+ "@esbuild/netbsd-arm64": "npm:0.27.2"
+ "@esbuild/netbsd-x64": "npm:0.27.2"
+ "@esbuild/openbsd-arm64": "npm:0.27.2"
+ "@esbuild/openbsd-x64": "npm:0.27.2"
+ "@esbuild/openharmony-arm64": "npm:0.27.2"
+ "@esbuild/sunos-x64": "npm:0.27.2"
+ "@esbuild/win32-arm64": "npm:0.27.2"
+ "@esbuild/win32-ia32": "npm:0.27.2"
+ "@esbuild/win32-x64": "npm:0.27.2"
+ dependenciesMeta:
+ "@esbuild/aix-ppc64":
+ optional: true
+ "@esbuild/android-arm":
+ optional: true
+ "@esbuild/android-arm64":
+ optional: true
+ "@esbuild/android-x64":
+ optional: true
+ "@esbuild/darwin-arm64":
+ optional: true
+ "@esbuild/darwin-x64":
+ optional: true
+ "@esbuild/freebsd-arm64":
+ optional: true
+ "@esbuild/freebsd-x64":
+ optional: true
+ "@esbuild/linux-arm":
+ optional: true
+ "@esbuild/linux-arm64":
+ optional: true
+ "@esbuild/linux-ia32":
+ optional: true
+ "@esbuild/linux-loong64":
+ optional: true
+ "@esbuild/linux-mips64el":
+ optional: true
+ "@esbuild/linux-ppc64":
+ optional: true
+ "@esbuild/linux-riscv64":
+ optional: true
+ "@esbuild/linux-s390x":
+ optional: true
+ "@esbuild/linux-x64":
+ optional: true
+ "@esbuild/netbsd-arm64":
+ optional: true
+ "@esbuild/netbsd-x64":
+ optional: true
+ "@esbuild/openbsd-arm64":
+ optional: true
+ "@esbuild/openbsd-x64":
+ optional: true
+ "@esbuild/openharmony-arm64":
+ optional: true
+ "@esbuild/sunos-x64":
+ optional: true
+ "@esbuild/win32-arm64":
+ optional: true
+ "@esbuild/win32-ia32":
+ optional: true
+ "@esbuild/win32-x64":
+ optional: true
+ bin:
+ esbuild: bin/esbuild
+ checksum: 10c0/cf83f626f55500f521d5fe7f4bc5871bec240d3deb2a01fbd379edc43b3664d1167428738a5aad8794b35d1cca985c44c375b1cd38a2ca613c77ced2c83aafcd
languageName: node
linkType: hard
@@ -5315,10 +5704,10 @@ __metadata:
languageName: node
linkType: hard
-"exsolve@npm:^1.0.5, exsolve@npm:^1.0.7":
- version: 1.0.7
- resolution: "exsolve@npm:1.0.7"
- checksum: 10c0/4479369d0bd84bb7e0b4f5d9bc18d26a89b6dbbbccd73f9d383d14892ef78ddbe159e01781055342f83dc00ebe90044036daf17ddf55cc21e2cac6609aa15631
+"exsolve@npm:^1.0.5, exsolve@npm:^1.0.7, exsolve@npm:^1.0.8":
+ version: 1.0.8
+ resolution: "exsolve@npm:1.0.8"
+ checksum: 10c0/65e44ae05bd4a4a5d87cfdbbd6b8f24389282cf9f85fa5feb17ca87ad3f354877e6af4cd99e02fc29044174891f82d1d68c77f69234410eb8f163530e6278c67
languageName: node
linkType: hard
@@ -5379,7 +5768,7 @@ __metadata:
languageName: node
linkType: hard
-"fast-npm-meta@npm:^0.4.6":
+"fast-npm-meta@npm:^0.4.7":
version: 0.4.7
resolution: "fast-npm-meta@npm:0.4.7"
checksum: 10c0/c3d4a624f8714a4a73e93a5a7851b9065f195c30511f7193b621cfa959caf9cdbc59fdc0575f18a59cdbc6b9f10dd1fbe924661885e6c2e876feb63329112816
@@ -5525,10 +5914,10 @@ __metadata:
languageName: node
linkType: hard
-"fraction.js@npm:^4.3.7":
- version: 4.3.7
- resolution: "fraction.js@npm:4.3.7"
- checksum: 10c0/df291391beea9ab4c263487ffd9d17fed162dbb736982dee1379b2a8cc94e4e24e46ed508c6d278aded9080ba51872f1bc5f3a5fd8d7c74e5f105b508ac28711
+"fraction.js@npm:^5.3.4":
+ version: 5.3.4
+ resolution: "fraction.js@npm:5.3.4"
+ checksum: 10c0/f90079fe9bfc665e0a07079938e8ff71115bce9462f17b32fc283f163b0540ec34dc33df8ed41bb56f028316b04361b9a9995b9ee9258617f8338e0b05c5f95a
languageName: node
linkType: hard
@@ -5678,9 +6067,9 @@ __metadata:
languageName: node
linkType: hard
-"glob@npm:^10.0.0, glob@npm:^10.2.2, glob@npm:^10.4.5":
- version: 10.4.5
- resolution: "glob@npm:10.4.5"
+"glob@npm:^10.0.0, glob@npm:^10.2.2, glob@npm:^10.5.0":
+ version: 10.5.0
+ resolution: "glob@npm:10.5.0"
dependencies:
foreground-child: "npm:^3.1.0"
jackspeak: "npm:^3.1.2"
@@ -5690,7 +6079,7 @@ __metadata:
path-scurry: "npm:^1.11.1"
bin:
glob: dist/esm/bin.mjs
- checksum: 10c0/19a9759ea77b8e3ca0a43c2f07ecddc2ad46216b786bb8f993c445aee80d345925a21e5280c7b7c6c59e860a0154b84e4b2b60321fea92cd3c56b4a7489f160e
+ checksum: 10c0/100705eddbde6323e7b35e1d1ac28bcb58322095bd8e63a7d0bef1a2cdafe0d0f7922a981b2b48369a4f8c1b077be5c171804534c3509dfe950dde15fbe6d828
languageName: node
linkType: hard
@@ -5724,17 +6113,17 @@ __metadata:
languageName: node
linkType: hard
-"globby@npm:^14.1.0":
- version: 14.1.0
- resolution: "globby@npm:14.1.0"
+"globby@npm:^15.0.0":
+ version: 15.0.0
+ resolution: "globby@npm:15.0.0"
dependencies:
- "@sindresorhus/merge-streams": "npm:^2.1.0"
+ "@sindresorhus/merge-streams": "npm:^4.0.0"
fast-glob: "npm:^3.3.3"
- ignore: "npm:^7.0.3"
+ ignore: "npm:^7.0.5"
path-type: "npm:^6.0.0"
slash: "npm:^5.1.0"
unicorn-magic: "npm:^0.3.0"
- checksum: 10c0/527a1063c5958255969620c6fa4444a2b2e9278caddd571d46dfbfa307cb15977afb746e84d682ba5b6c94fc081e8997f80ff05dd235441ba1cb16f86153e58e
+ checksum: 10c0/e4107be0579bcdd9642b8dff86aeafeaf62b2b9dd116669ab6e02e0e0c07ada0d972c2db182dee7588b460fe8c8919ddcc6b1cc4db405ca3a2adc9d35fa6eb21
languageName: node
linkType: hard
@@ -5878,6 +6267,15 @@ __metadata:
languageName: node
linkType: hard
+"iconv-lite@npm:^0.4.8":
+ version: 0.4.24
+ resolution: "iconv-lite@npm:0.4.24"
+ dependencies:
+ safer-buffer: "npm:>= 2.1.2 < 3"
+ checksum: 10c0/c6886a24cc00f2a059767440ec1bc00d334a89f250db8e0f7feb4961c8727118457e27c495ba94d082e51d3baca378726cd110aaf7ded8b9bbfd6a44760cf1d4
+ languageName: node
+ linkType: hard
+
"iconv-lite@npm:^0.6.2":
version: 0.6.3
resolution: "iconv-lite@npm:0.6.3"
@@ -5901,17 +6299,17 @@ __metadata:
languageName: node
linkType: hard
-"ignore@npm:^7.0.0, ignore@npm:^7.0.3, ignore@npm:^7.0.5":
+"ignore@npm:^7.0.0, ignore@npm:^7.0.5":
version: 7.0.5
resolution: "ignore@npm:7.0.5"
checksum: 10c0/ae00db89fe873064a093b8999fe4cc284b13ef2a178636211842cceb650b9c3e390d3339191acb145d81ed5379d2074840cf0c33a20bdbd6f32821f79eb4ad5d
languageName: node
linkType: hard
-"image-meta@npm:^0.2.1":
- version: 0.2.1
- resolution: "image-meta@npm:0.2.1"
- checksum: 10c0/c8a100b666663ad53ffe95c22647e79802d6eac6dfa3e1a00e4cf034129b4a13e7861b5c5a7cee46604a45a9e0c8ed91e73233c7bf9f48fbece5f0300ef6912c
+"image-meta@npm:^0.2.2":
+ version: 0.2.2
+ resolution: "image-meta@npm:0.2.2"
+ checksum: 10c0/4c821b9f09e5117f4aab2864e07d8aea9e1079a432f2d93ec79aafbdc4fbd164451388bb6d6c0a1f1e3b5b5838e42533b0feedba05fab2e1a6c0242c559ca40b
languageName: node
linkType: hard
@@ -5973,9 +6371,9 @@ __metadata:
languageName: node
linkType: hard
-"ioredis@npm:^5.7.0":
- version: 5.8.0
- resolution: "ioredis@npm:5.8.0"
+"ioredis@npm:^5.8.2":
+ version: 5.8.2
+ resolution: "ioredis@npm:5.8.2"
dependencies:
"@ioredis/commands": "npm:1.4.0"
cluster-key-slot: "npm:^1.1.0"
@@ -5986,7 +6384,7 @@ __metadata:
redis-errors: "npm:^1.2.0"
redis-parser: "npm:^3.0.0"
standard-as-callback: "npm:^2.1.0"
- checksum: 10c0/66fad6283c6d9052b4aa0987d592c1bf6c9471304eb0edf0c9d18024b1b38028adf29c05f1cf114b90f5bdb516576f897a654946e8c29568f404ac33cd3b9d19
+ checksum: 10c0/305e385f811d49908899e32c2de69616cd059f909afd9e0a53e54f596b1a5835ee3449bfc6a3c49afbc5a2fd27990059e316cc78f449c94024957bd34c826d88
languageName: node
linkType: hard
@@ -6214,16 +6612,7 @@ __metadata:
languageName: node
linkType: hard
-"jiti@npm:^2.1.2, jiti@npm:^2.4.2, jiti@npm:^2.5.1":
- version: 2.6.0
- resolution: "jiti@npm:2.6.0"
- bin:
- jiti: lib/jiti-cli.mjs
- checksum: 10c0/5002ccecdb02e85413e5bfe3819a5ac458dcce12b358c556b6cf17b5b6cbedd36514f6a67d4aa2b290caa2b933406502a1985d0bfee784ece788e90a0392d534
- languageName: node
- linkType: hard
-
-"jiti@npm:^2.6.0":
+"jiti@npm:^2.1.2, jiti@npm:^2.4.2, jiti@npm:^2.5.1, jiti@npm:^2.6.0, jiti@npm:^2.6.1":
version: 2.6.1
resolution: "jiti@npm:2.6.1"
bin:
@@ -6368,20 +6757,20 @@ __metadata:
languageName: node
linkType: hard
-"knitwork@npm:^1.2.0":
- version: 1.2.0
- resolution: "knitwork@npm:1.2.0"
- checksum: 10c0/26113ce2909595054a78b36a79a7cdddf1336438b111688c91a74620148d15182e073c9504d2261ff4cad888d7ef330df91abc0b03d2b52ff3cff7c5b469bfb5
+"knitwork@npm:^1.2.0, knitwork@npm:^1.3.0":
+ version: 1.3.0
+ resolution: "knitwork@npm:1.3.0"
+ checksum: 10c0/727127cfea8b3b54ad70e71f52561ebae992e6b27e93d412ba807d96348c5e3827acd6235f8105d5e47a9f078592c988cb48549253babebcb23fe980c0219a22
languageName: node
linkType: hard
-"launch-editor@npm:^2.11.1":
- version: 2.11.1
- resolution: "launch-editor@npm:2.11.1"
+"launch-editor@npm:^2.12.0":
+ version: 2.12.0
+ resolution: "launch-editor@npm:2.12.0"
dependencies:
picocolors: "npm:^1.1.1"
shell-quote: "npm:^1.8.3"
- checksum: 10c0/b1aad04eef3a675aa35e82498bedaaeb790b9a02834a9cff79987dd7c6f5d92fd8f79ff7a8a4cd61681e0d462069de30d0bc65b41a936a7e3d700a4fdac1090e
+ checksum: 10c0/fac5e7ad90bf185594cad4c831a52419eef50e667c4eddb5b0a58eb5f944e16d947636ee767b9896ffd46a51db34925edd3b854c48efb47f6d767ffd7d904e71
languageName: node
linkType: hard
@@ -6550,7 +6939,7 @@ __metadata:
languageName: node
linkType: hard
-"local-pkg@npm:^1.0.0, local-pkg@npm:^1.1.1, local-pkg@npm:^1.1.2":
+"local-pkg@npm:^1.0.0, local-pkg@npm:^1.1.2":
version: 1.1.2
resolution: "local-pkg@npm:1.1.2"
dependencies:
@@ -6650,32 +7039,32 @@ __metadata:
languageName: node
linkType: hard
-"magic-string-ast@npm:^1.0.0":
- version: 1.0.2
- resolution: "magic-string-ast@npm:1.0.2"
+"magic-string-ast@npm:^1.0.2":
+ version: 1.0.3
+ resolution: "magic-string-ast@npm:1.0.3"
dependencies:
- magic-string: "npm:^0.30.17"
- checksum: 10c0/eb9a3dd4746d2cf2c54cd7fcb084a031f343e1c932dfada278bdf571b1d50ded632229a2e4a92293a66b46c01146b5c26b6885bc424652c8fd3ba167de29c5d8
+ magic-string: "npm:^0.30.19"
+ checksum: 10c0/77c05960ef6f7261274e847008488d6c8b6d26a47d5ff54724f1e6c43d18b64d6d27feba313e8189160637e2f52475a26df8e665312b237140ba0be46c8ab35f
languageName: node
linkType: hard
-"magic-string@npm:^0.30.12, magic-string@npm:^0.30.17, magic-string@npm:^0.30.19, magic-string@npm:^0.30.3":
- version: 0.30.19
- resolution: "magic-string@npm:0.30.19"
+"magic-string@npm:^0.30.12, magic-string@npm:^0.30.17, magic-string@npm:^0.30.19, magic-string@npm:^0.30.21, magic-string@npm:^0.30.3":
+ version: 0.30.21
+ resolution: "magic-string@npm:0.30.21"
dependencies:
"@jridgewell/sourcemap-codec": "npm:^1.5.5"
- checksum: 10c0/db23fd2e2ee98a1aeb88a4cdb2353137fcf05819b883c856dd79e4c7dfb25151e2a5a4d5dbd88add5e30ed8ae5c51bcf4accbc6becb75249d924ec7b4fbcae27
+ checksum: 10c0/299378e38f9a270069fc62358522ddfb44e94244baa0d6a8980ab2a9b2490a1d03b236b447eee309e17eb3bddfa482c61259d47960eb018a904f0ded52780c4a
languageName: node
linkType: hard
-"magicast@npm:^0.3.5":
- version: 0.3.5
- resolution: "magicast@npm:0.3.5"
+"magicast@npm:^0.5.0, magicast@npm:^0.5.1":
+ version: 0.5.1
+ resolution: "magicast@npm:0.5.1"
dependencies:
- "@babel/parser": "npm:^7.25.4"
- "@babel/types": "npm:^7.25.4"
- source-map-js: "npm:^1.2.0"
- checksum: 10c0/a6cacc0a848af84f03e3f5bda7b0de75e4d0aa9ddce5517fd23ed0f31b5ddd51b2d0ff0b7e09b51f7de0f4053c7a1107117edda6b0732dca3e9e39e6c5a68c64
+ "@babel/parser": "npm:^7.28.5"
+ "@babel/types": "npm:^7.28.5"
+ source-map-js: "npm:^1.2.1"
+ checksum: 10c0/a00bbf3688b9b3e83c10b3bfe3f106cc2ccbf20c4f2dc1c9020a10556dfe0a6a6605a445ee8e86a6e2b484ec519a657b5e405532684f72678c62e4c0d32f962c
languageName: node
linkType: hard
@@ -7285,7 +7674,7 @@ __metadata:
languageName: node
linkType: hard
-"mime@npm:^4.0.7":
+"mime@npm:^4.1.0":
version: 4.1.0
resolution: "mime@npm:4.1.0"
bin:
@@ -7460,7 +7849,7 @@ __metadata:
languageName: node
linkType: hard
-"nanoid@npm:^5.1.0":
+"nanoid@npm:^5.1.5":
version: 5.1.6
resolution: "nanoid@npm:5.1.6"
bin:
@@ -7504,21 +7893,21 @@ __metadata:
languageName: node
linkType: hard
-"nitropack@npm:^2.12.5":
- version: 2.12.6
- resolution: "nitropack@npm:2.12.6"
+"nitropack@npm:^2.12.9":
+ version: 2.12.9
+ resolution: "nitropack@npm:2.12.9"
dependencies:
"@cloudflare/kv-asset-handler": "npm:^0.4.0"
"@rollup/plugin-alias": "npm:^5.1.1"
- "@rollup/plugin-commonjs": "npm:^28.0.6"
+ "@rollup/plugin-commonjs": "npm:^28.0.9"
"@rollup/plugin-inject": "npm:^5.0.5"
"@rollup/plugin-json": "npm:^6.1.0"
- "@rollup/plugin-node-resolve": "npm:^16.0.1"
+ "@rollup/plugin-node-resolve": "npm:^16.0.3"
"@rollup/plugin-replace": "npm:^6.0.2"
"@rollup/plugin-terser": "npm:^0.4.4"
- "@vercel/nft": "npm:^0.30.1"
+ "@vercel/nft": "npm:^0.30.3"
archiver: "npm:^7.0.1"
- c12: "npm:^3.2.0"
+ c12: "npm:^3.3.1"
chokidar: "npm:^4.0.3"
citty: "npm:^0.1.6"
compatx: "npm:^0.2.0"
@@ -7527,52 +7916,52 @@ __metadata:
cookie-es: "npm:^2.0.0"
croner: "npm:^9.1.0"
crossws: "npm:^0.3.5"
- db0: "npm:^0.3.2"
+ db0: "npm:^0.3.4"
defu: "npm:^6.1.4"
destr: "npm:^2.0.5"
- dot-prop: "npm:^9.0.0"
- esbuild: "npm:^0.25.9"
+ dot-prop: "npm:^10.1.0"
+ esbuild: "npm:^0.25.11"
escape-string-regexp: "npm:^5.0.0"
etag: "npm:^1.8.1"
exsolve: "npm:^1.0.7"
- globby: "npm:^14.1.0"
+ globby: "npm:^15.0.0"
gzip-size: "npm:^7.0.0"
h3: "npm:^1.15.4"
hookable: "npm:^5.5.3"
httpxy: "npm:^0.1.7"
- ioredis: "npm:^5.7.0"
- jiti: "npm:^2.5.1"
+ ioredis: "npm:^5.8.2"
+ jiti: "npm:^2.6.1"
klona: "npm:^2.0.6"
knitwork: "npm:^1.2.0"
listhen: "npm:^1.9.0"
- magic-string: "npm:^0.30.19"
- magicast: "npm:^0.3.5"
- mime: "npm:^4.0.7"
+ magic-string: "npm:^0.30.21"
+ magicast: "npm:^0.5.0"
+ mime: "npm:^4.1.0"
mlly: "npm:^1.8.0"
node-fetch-native: "npm:^1.6.7"
node-mock-http: "npm:^1.0.3"
- ofetch: "npm:^1.4.1"
+ ofetch: "npm:^1.5.0"
ohash: "npm:^2.0.11"
pathe: "npm:^2.0.3"
perfect-debounce: "npm:^2.0.0"
pkg-types: "npm:^2.3.0"
- pretty-bytes: "npm:^7.0.1"
+ pretty-bytes: "npm:^7.1.0"
radix3: "npm:^1.1.2"
- rollup: "npm:^4.50.1"
- rollup-plugin-visualizer: "npm:^6.0.3"
+ rollup: "npm:^4.52.5"
+ rollup-plugin-visualizer: "npm:^6.0.5"
scule: "npm:^1.3.0"
- semver: "npm:^7.7.2"
+ semver: "npm:^7.7.3"
serve-placeholder: "npm:^2.0.2"
serve-static: "npm:^2.2.0"
source-map: "npm:^0.7.6"
- std-env: "npm:^3.9.0"
+ std-env: "npm:^3.10.0"
ufo: "npm:^1.6.1"
ultrahtml: "npm:^1.6.0"
uncrypto: "npm:^0.1.3"
unctx: "npm:^2.4.1"
- unenv: "npm:^2.0.0-rc.21"
- unimport: "npm:^5.2.0"
- unplugin-utils: "npm:^0.3.0"
+ unenv: "npm:^2.0.0-rc.23"
+ unimport: "npm:^5.5.0"
+ unplugin-utils: "npm:^0.3.1"
unstorage: "npm:^1.17.1"
untyped: "npm:^2.0.0"
unwasm: "npm:^0.3.11"
@@ -7586,7 +7975,7 @@ __metadata:
bin:
nitro: dist/cli/index.mjs
nitropack: dist/cli/index.mjs
- checksum: 10c0/f1595417da5dfa2b1e704187cf4212e8576f92fe1f4884dac3e8c642824b9013f9b2d950f404bf5bc0961220fc23b0f8b8b2ca38c133da46cc5f9a559bf8bef2
+ checksum: 10c0/5702d6494fbe52fe7579c05afee51ba970e0cf178f637253c23ca1ff2c8a7d3f77e39907202aea1ed20eca799212486a2f91d72a2ecaa095540f99362fb8d74f
languageName: node
linkType: hard
@@ -7599,7 +7988,7 @@ __metadata:
languageName: node
linkType: hard
-"node-fetch-native@npm:^1.6.4, node-fetch-native@npm:^1.6.6, node-fetch-native@npm:^1.6.7":
+"node-fetch-native@npm:^1.6.6, node-fetch-native@npm:^1.6.7":
version: 1.6.7
resolution: "node-fetch-native@npm:1.6.7"
checksum: 10c0/8b748300fb053d21ca4d3db9c3ff52593d5e8f8a2d9fe90cbfad159676e324b954fdaefab46aeca007b5b9edab3d150021c4846444e4e8ab1f4e44cd3807be87
@@ -7665,10 +8054,10 @@ __metadata:
languageName: node
linkType: hard
-"node-releases@npm:^2.0.21":
- version: 2.0.21
- resolution: "node-releases@npm:2.0.21"
- checksum: 10c0/0eb94916eeebbda9d51da6a9ea47428a12b2bb0dd94930c949632b0c859356abf53b2e5a2792021f96c5fda4f791a8e195f2375b78ae7dba8d8bc3141baa1469
+"node-releases@npm:^2.0.27":
+ version: 2.0.27
+ resolution: "node-releases@npm:2.0.27"
+ checksum: 10c0/f1e6583b7833ea81880627748d28a3a7ff5703d5409328c216ae57befbced10ce2c991bea86434e8ec39003bd017f70481e2e5f8c1f7e0a7663241f81d6e00e2
languageName: node
linkType: hard
@@ -7690,13 +8079,6 @@ __metadata:
languageName: node
linkType: hard
-"normalize-range@npm:^0.1.2":
- version: 0.1.2
- resolution: "normalize-range@npm:0.1.2"
- checksum: 10c0/bf39b73a63e0a42ad1a48c2bd1bda5a07ede64a7e2567307a407674e595bcff0fa0d57e8e5f1e7fa5e91000797c7615e13613227aaaa4d6d6e87f5bd5cc95de6
- languageName: node
- linkType: hard
-
"npm-run-path@npm:^5.1.0":
version: 5.3.0
resolution: "npm-run-path@npm:5.3.0"
@@ -7725,73 +8107,67 @@ __metadata:
languageName: node
linkType: hard
-"nuxt@npm:^4.1.2":
- version: 4.1.2
- resolution: "nuxt@npm:4.1.2"
+"nuxt@npm:^4.2.2":
+ version: 4.2.2
+ resolution: "nuxt@npm:4.2.2"
dependencies:
- "@nuxt/cli": "npm:^3.28.0"
- "@nuxt/devalue": "npm:^2.0.2"
- "@nuxt/devtools": "npm:^2.6.3"
- "@nuxt/kit": "npm:4.1.2"
- "@nuxt/schema": "npm:4.1.2"
+ "@dxup/nuxt": "npm:^0.2.2"
+ "@nuxt/cli": "npm:^3.31.1"
+ "@nuxt/devtools": "npm:^3.1.1"
+ "@nuxt/kit": "npm:4.2.2"
+ "@nuxt/nitro-server": "npm:4.2.2"
+ "@nuxt/schema": "npm:4.2.2"
"@nuxt/telemetry": "npm:^2.6.6"
- "@nuxt/vite-builder": "npm:4.1.2"
- "@unhead/vue": "npm:^2.0.14"
- "@vue/shared": "npm:^3.5.21"
- c12: "npm:^3.2.0"
- chokidar: "npm:^4.0.3"
+ "@nuxt/vite-builder": "npm:4.2.2"
+ "@unhead/vue": "npm:^2.0.19"
+ "@vue/shared": "npm:^3.5.25"
+ c12: "npm:^3.3.2"
+ chokidar: "npm:^5.0.0"
compatx: "npm:^0.2.0"
consola: "npm:^3.4.2"
cookie-es: "npm:^2.0.0"
defu: "npm:^6.1.4"
destr: "npm:^2.0.5"
- devalue: "npm:^5.3.2"
+ devalue: "npm:^5.6.0"
errx: "npm:^0.1.0"
- esbuild: "npm:^0.25.9"
escape-string-regexp: "npm:^5.0.0"
- estree-walker: "npm:^3.0.3"
- exsolve: "npm:^1.0.7"
+ exsolve: "npm:^1.0.8"
h3: "npm:^1.15.4"
hookable: "npm:^5.5.3"
ignore: "npm:^7.0.5"
impound: "npm:^1.0.0"
- jiti: "npm:^2.5.1"
+ jiti: "npm:^2.6.1"
klona: "npm:^2.0.6"
- knitwork: "npm:^1.2.0"
- magic-string: "npm:^0.30.19"
+ knitwork: "npm:^1.3.0"
+ magic-string: "npm:^0.30.21"
mlly: "npm:^1.8.0"
- mocked-exports: "npm:^0.1.1"
nanotar: "npm:^0.2.0"
- nitropack: "npm:^2.12.5"
- nypm: "npm:^0.6.1"
- ofetch: "npm:^1.4.1"
+ nypm: "npm:^0.6.2"
+ ofetch: "npm:^1.5.1"
ohash: "npm:^2.0.11"
- on-change: "npm:^5.0.1"
- oxc-minify: "npm:^0.87.0"
- oxc-parser: "npm:^0.87.0"
- oxc-transform: "npm:^0.87.0"
- oxc-walker: "npm:^0.5.2"
+ on-change: "npm:^6.0.1"
+ oxc-minify: "npm:^0.102.0"
+ oxc-parser: "npm:^0.102.0"
+ oxc-transform: "npm:^0.102.0"
+ oxc-walker: "npm:^0.6.0"
pathe: "npm:^2.0.3"
perfect-debounce: "npm:^2.0.0"
pkg-types: "npm:^2.3.0"
radix3: "npm:^1.1.2"
scule: "npm:^1.3.0"
- semver: "npm:^7.7.2"
- std-env: "npm:^3.9.0"
+ semver: "npm:^7.7.3"
+ std-env: "npm:^3.10.0"
tinyglobby: "npm:^0.2.15"
ufo: "npm:^1.6.1"
ultrahtml: "npm:^1.6.0"
uncrypto: "npm:^0.1.3"
unctx: "npm:^2.4.1"
- unimport: "npm:^5.2.0"
- unplugin: "npm:^2.3.10"
- unplugin-vue-router: "npm:^0.15.0"
- unstorage: "npm:^1.17.1"
+ unimport: "npm:^5.5.0"
+ unplugin: "npm:^2.3.11"
+ unplugin-vue-router: "npm:^0.19.0"
untyped: "npm:^2.0.0"
- vue: "npm:^3.5.21"
- vue-bundle-renderer: "npm:^2.1.2"
- vue-devtools-stub: "npm:^0.1.0"
- vue-router: "npm:^4.5.1"
+ vue: "npm:^3.5.25"
+ vue-router: "npm:^4.6.3"
peerDependencies:
"@parcel/watcher": ^2.1.0
"@types/node": ">=18.12.0"
@@ -7803,11 +8179,11 @@ __metadata:
bin:
nuxi: bin/nuxt.mjs
nuxt: bin/nuxt.mjs
- checksum: 10c0/79d91ad8df6f32304a934c4147e9676dcab581455ebff6104bf6e6410e3ce88dac83945aafae69980e2b90eb42c8ebda79889ee1157bf3d851af5a7c6e29b955
+ checksum: 10c0/94b1b61efa7d6fe0c2c51bea5f3d54a4b7587fdad0718fe3d8137f965719a65ca435d43443abc2b623330164bd488a0a29728ad95d62a332a676b0a2b7a08997
languageName: node
linkType: hard
-"nypm@npm:^0.6.0, nypm@npm:^0.6.1, nypm@npm:^0.6.2":
+"nypm@npm:^0.6.0, nypm@npm:^0.6.2":
version: 0.6.2
resolution: "nypm@npm:0.6.2"
dependencies:
@@ -7831,14 +8207,21 @@ __metadata:
languageName: node
linkType: hard
-"ofetch@npm:^1.4.1":
- version: 1.4.1
- resolution: "ofetch@npm:1.4.1"
+"obug@npm:^2.0.0":
+ version: 2.1.1
+ resolution: "obug@npm:2.1.1"
+ checksum: 10c0/59dccd7de72a047e08f8649e94c1015ec72f94eefb6ddb57fb4812c4b425a813bc7e7cd30c9aca20db3c59abc3c85cc7a62bb656a968741d770f4e8e02bc2e78
+ languageName: node
+ linkType: hard
+
+"ofetch@npm:^1.4.1, ofetch@npm:^1.5.0, ofetch@npm:^1.5.1":
+ version: 1.5.1
+ resolution: "ofetch@npm:1.5.1"
dependencies:
- destr: "npm:^2.0.3"
- node-fetch-native: "npm:^1.6.4"
- ufo: "npm:^1.5.4"
- checksum: 10c0/fd712e84058ad5058a5880fe805e9bb1c2084fb7f9c54afa99a2c7e84065589b4312fa6e2dcca4432865e44ad1ec13fcd055c1bf7977ced838577a45689a04fa
+ destr: "npm:^2.0.5"
+ node-fetch-native: "npm:^1.6.7"
+ ufo: "npm:^1.6.1"
+ checksum: 10c0/97ebc600512ea0ab401e97c73313218cc53c9b530b32ec8c995c347b0c68887129993168d1753f527761a64c6f93a5d823ce1378ccec95fc65a606f323a79a6c
languageName: node
linkType: hard
@@ -7849,10 +8232,10 @@ __metadata:
languageName: node
linkType: hard
-"on-change@npm:^5.0.1":
- version: 5.0.1
- resolution: "on-change@npm:5.0.1"
- checksum: 10c0/3be9929f45af820288ff3c104290e8bf6346889a51f7b0ccb6eb20802e5b84e34917811a5f267c3fa94729061be99c7aeb99036d1ce6099c673551e8beb04d0a
+"on-change@npm:^6.0.1":
+ version: 6.0.1
+ resolution: "on-change@npm:6.0.1"
+ checksum: 10c0/a0e81061210234486dccc8ced9265d09a55eb28db479fab6ce24cc226d73d86516b887cde2fcf381ae9434b6f16840c64caf5a64a7080710369256008d689711
languageName: node
linkType: hard
@@ -7911,25 +8294,25 @@ __metadata:
languageName: node
linkType: hard
-"oxc-minify@npm:^0.87.0":
- version: 0.87.0
- resolution: "oxc-minify@npm:0.87.0"
+"oxc-minify@npm:^0.102.0":
+ version: 0.102.0
+ resolution: "oxc-minify@npm:0.102.0"
dependencies:
- "@oxc-minify/binding-android-arm64": "npm:0.87.0"
- "@oxc-minify/binding-darwin-arm64": "npm:0.87.0"
- "@oxc-minify/binding-darwin-x64": "npm:0.87.0"
- "@oxc-minify/binding-freebsd-x64": "npm:0.87.0"
- "@oxc-minify/binding-linux-arm-gnueabihf": "npm:0.87.0"
- "@oxc-minify/binding-linux-arm-musleabihf": "npm:0.87.0"
- "@oxc-minify/binding-linux-arm64-gnu": "npm:0.87.0"
- "@oxc-minify/binding-linux-arm64-musl": "npm:0.87.0"
- "@oxc-minify/binding-linux-riscv64-gnu": "npm:0.87.0"
- "@oxc-minify/binding-linux-s390x-gnu": "npm:0.87.0"
- "@oxc-minify/binding-linux-x64-gnu": "npm:0.87.0"
- "@oxc-minify/binding-linux-x64-musl": "npm:0.87.0"
- "@oxc-minify/binding-wasm32-wasi": "npm:0.87.0"
- "@oxc-minify/binding-win32-arm64-msvc": "npm:0.87.0"
- "@oxc-minify/binding-win32-x64-msvc": "npm:0.87.0"
+ "@oxc-minify/binding-android-arm64": "npm:0.102.0"
+ "@oxc-minify/binding-darwin-arm64": "npm:0.102.0"
+ "@oxc-minify/binding-darwin-x64": "npm:0.102.0"
+ "@oxc-minify/binding-freebsd-x64": "npm:0.102.0"
+ "@oxc-minify/binding-linux-arm-gnueabihf": "npm:0.102.0"
+ "@oxc-minify/binding-linux-arm64-gnu": "npm:0.102.0"
+ "@oxc-minify/binding-linux-arm64-musl": "npm:0.102.0"
+ "@oxc-minify/binding-linux-riscv64-gnu": "npm:0.102.0"
+ "@oxc-minify/binding-linux-s390x-gnu": "npm:0.102.0"
+ "@oxc-minify/binding-linux-x64-gnu": "npm:0.102.0"
+ "@oxc-minify/binding-linux-x64-musl": "npm:0.102.0"
+ "@oxc-minify/binding-openharmony-arm64": "npm:0.102.0"
+ "@oxc-minify/binding-wasm32-wasi": "npm:0.102.0"
+ "@oxc-minify/binding-win32-arm64-msvc": "npm:0.102.0"
+ "@oxc-minify/binding-win32-x64-msvc": "npm:0.102.0"
dependenciesMeta:
"@oxc-minify/binding-android-arm64":
optional: true
@@ -7941,8 +8324,6 @@ __metadata:
optional: true
"@oxc-minify/binding-linux-arm-gnueabihf":
optional: true
- "@oxc-minify/binding-linux-arm-musleabihf":
- optional: true
"@oxc-minify/binding-linux-arm64-gnu":
optional: true
"@oxc-minify/binding-linux-arm64-musl":
@@ -7955,36 +8336,38 @@ __metadata:
optional: true
"@oxc-minify/binding-linux-x64-musl":
optional: true
+ "@oxc-minify/binding-openharmony-arm64":
+ optional: true
"@oxc-minify/binding-wasm32-wasi":
optional: true
"@oxc-minify/binding-win32-arm64-msvc":
optional: true
"@oxc-minify/binding-win32-x64-msvc":
optional: true
- checksum: 10c0/fa27a08b3f15270efd897904eb8544663e030ca9269e430ec682dabf626436c967ee98004239d4ccd082bd5c9554b48a6abc63fb6bf9abbb90495a19109123b8
+ checksum: 10c0/d44827fdb71f72aaa38b6a29f1508b09940b03992a855b0196b64275f2bb38693983a47b69b110ef3b1bea45e3e0f3b507d1cf1935cf6227b9e17a0db5994ed6
languageName: node
linkType: hard
-"oxc-parser@npm:^0.87.0":
- version: 0.87.0
- resolution: "oxc-parser@npm:0.87.0"
+"oxc-parser@npm:^0.102.0":
+ version: 0.102.0
+ resolution: "oxc-parser@npm:0.102.0"
dependencies:
- "@oxc-parser/binding-android-arm64": "npm:0.87.0"
- "@oxc-parser/binding-darwin-arm64": "npm:0.87.0"
- "@oxc-parser/binding-darwin-x64": "npm:0.87.0"
- "@oxc-parser/binding-freebsd-x64": "npm:0.87.0"
- "@oxc-parser/binding-linux-arm-gnueabihf": "npm:0.87.0"
- "@oxc-parser/binding-linux-arm-musleabihf": "npm:0.87.0"
- "@oxc-parser/binding-linux-arm64-gnu": "npm:0.87.0"
- "@oxc-parser/binding-linux-arm64-musl": "npm:0.87.0"
- "@oxc-parser/binding-linux-riscv64-gnu": "npm:0.87.0"
- "@oxc-parser/binding-linux-s390x-gnu": "npm:0.87.0"
- "@oxc-parser/binding-linux-x64-gnu": "npm:0.87.0"
- "@oxc-parser/binding-linux-x64-musl": "npm:0.87.0"
- "@oxc-parser/binding-wasm32-wasi": "npm:0.87.0"
- "@oxc-parser/binding-win32-arm64-msvc": "npm:0.87.0"
- "@oxc-parser/binding-win32-x64-msvc": "npm:0.87.0"
- "@oxc-project/types": "npm:^0.87.0"
+ "@oxc-parser/binding-android-arm64": "npm:0.102.0"
+ "@oxc-parser/binding-darwin-arm64": "npm:0.102.0"
+ "@oxc-parser/binding-darwin-x64": "npm:0.102.0"
+ "@oxc-parser/binding-freebsd-x64": "npm:0.102.0"
+ "@oxc-parser/binding-linux-arm-gnueabihf": "npm:0.102.0"
+ "@oxc-parser/binding-linux-arm64-gnu": "npm:0.102.0"
+ "@oxc-parser/binding-linux-arm64-musl": "npm:0.102.0"
+ "@oxc-parser/binding-linux-riscv64-gnu": "npm:0.102.0"
+ "@oxc-parser/binding-linux-s390x-gnu": "npm:0.102.0"
+ "@oxc-parser/binding-linux-x64-gnu": "npm:0.102.0"
+ "@oxc-parser/binding-linux-x64-musl": "npm:0.102.0"
+ "@oxc-parser/binding-openharmony-arm64": "npm:0.102.0"
+ "@oxc-parser/binding-wasm32-wasi": "npm:0.102.0"
+ "@oxc-parser/binding-win32-arm64-msvc": "npm:0.102.0"
+ "@oxc-parser/binding-win32-x64-msvc": "npm:0.102.0"
+ "@oxc-project/types": "npm:^0.102.0"
dependenciesMeta:
"@oxc-parser/binding-android-arm64":
optional: true
@@ -7996,8 +8379,6 @@ __metadata:
optional: true
"@oxc-parser/binding-linux-arm-gnueabihf":
optional: true
- "@oxc-parser/binding-linux-arm-musleabihf":
- optional: true
"@oxc-parser/binding-linux-arm64-gnu":
optional: true
"@oxc-parser/binding-linux-arm64-musl":
@@ -8010,35 +8391,37 @@ __metadata:
optional: true
"@oxc-parser/binding-linux-x64-musl":
optional: true
+ "@oxc-parser/binding-openharmony-arm64":
+ optional: true
"@oxc-parser/binding-wasm32-wasi":
optional: true
"@oxc-parser/binding-win32-arm64-msvc":
optional: true
"@oxc-parser/binding-win32-x64-msvc":
optional: true
- checksum: 10c0/356028e7d0d1a461de0d76bfd434e4257d4b24646c604643206a2b75f591d8acb1781237c95cbf1ec32ff7cf79b6a42ce9c86ec5d93fb131cbf6e210b1d8b564
+ checksum: 10c0/985258009ec22290278c00f56091bf4b00e92f09d4dbcab85c9cec477405eb4240a7560ce02dd391ca8dedfb6dacf8b189a2f7aa3dad01b76df541ecdab240e4
languageName: node
linkType: hard
-"oxc-transform@npm:^0.87.0":
- version: 0.87.0
- resolution: "oxc-transform@npm:0.87.0"
+"oxc-transform@npm:^0.102.0":
+ version: 0.102.0
+ resolution: "oxc-transform@npm:0.102.0"
dependencies:
- "@oxc-transform/binding-android-arm64": "npm:0.87.0"
- "@oxc-transform/binding-darwin-arm64": "npm:0.87.0"
- "@oxc-transform/binding-darwin-x64": "npm:0.87.0"
- "@oxc-transform/binding-freebsd-x64": "npm:0.87.0"
- "@oxc-transform/binding-linux-arm-gnueabihf": "npm:0.87.0"
- "@oxc-transform/binding-linux-arm-musleabihf": "npm:0.87.0"
- "@oxc-transform/binding-linux-arm64-gnu": "npm:0.87.0"
- "@oxc-transform/binding-linux-arm64-musl": "npm:0.87.0"
- "@oxc-transform/binding-linux-riscv64-gnu": "npm:0.87.0"
- "@oxc-transform/binding-linux-s390x-gnu": "npm:0.87.0"
- "@oxc-transform/binding-linux-x64-gnu": "npm:0.87.0"
- "@oxc-transform/binding-linux-x64-musl": "npm:0.87.0"
- "@oxc-transform/binding-wasm32-wasi": "npm:0.87.0"
- "@oxc-transform/binding-win32-arm64-msvc": "npm:0.87.0"
- "@oxc-transform/binding-win32-x64-msvc": "npm:0.87.0"
+ "@oxc-transform/binding-android-arm64": "npm:0.102.0"
+ "@oxc-transform/binding-darwin-arm64": "npm:0.102.0"
+ "@oxc-transform/binding-darwin-x64": "npm:0.102.0"
+ "@oxc-transform/binding-freebsd-x64": "npm:0.102.0"
+ "@oxc-transform/binding-linux-arm-gnueabihf": "npm:0.102.0"
+ "@oxc-transform/binding-linux-arm64-gnu": "npm:0.102.0"
+ "@oxc-transform/binding-linux-arm64-musl": "npm:0.102.0"
+ "@oxc-transform/binding-linux-riscv64-gnu": "npm:0.102.0"
+ "@oxc-transform/binding-linux-s390x-gnu": "npm:0.102.0"
+ "@oxc-transform/binding-linux-x64-gnu": "npm:0.102.0"
+ "@oxc-transform/binding-linux-x64-musl": "npm:0.102.0"
+ "@oxc-transform/binding-openharmony-arm64": "npm:0.102.0"
+ "@oxc-transform/binding-wasm32-wasi": "npm:0.102.0"
+ "@oxc-transform/binding-win32-arm64-msvc": "npm:0.102.0"
+ "@oxc-transform/binding-win32-x64-msvc": "npm:0.102.0"
dependenciesMeta:
"@oxc-transform/binding-android-arm64":
optional: true
@@ -8050,8 +8433,6 @@ __metadata:
optional: true
"@oxc-transform/binding-linux-arm-gnueabihf":
optional: true
- "@oxc-transform/binding-linux-arm-musleabihf":
- optional: true
"@oxc-transform/binding-linux-arm64-gnu":
optional: true
"@oxc-transform/binding-linux-arm64-musl":
@@ -8064,24 +8445,26 @@ __metadata:
optional: true
"@oxc-transform/binding-linux-x64-musl":
optional: true
+ "@oxc-transform/binding-openharmony-arm64":
+ optional: true
"@oxc-transform/binding-wasm32-wasi":
optional: true
"@oxc-transform/binding-win32-arm64-msvc":
optional: true
"@oxc-transform/binding-win32-x64-msvc":
optional: true
- checksum: 10c0/b9fc5d9995393c4fe405db835604783232de608f579e86db8c9be48bbe15b2f558760969a858950aeb62723ad177a3b201d2d039994855d0b500e22ffd6993ae
+ checksum: 10c0/6096dbc56e4738e539d711b4d00e847e95ac91e9d288fd05f6b1d1bac45290701596ca0c495bd56b0eca3c8d4fc9ce8af63aa76860a74c6e172eac4d2e755681
languageName: node
linkType: hard
-"oxc-walker@npm:^0.5.2":
- version: 0.5.2
- resolution: "oxc-walker@npm:0.5.2"
+"oxc-walker@npm:^0.6.0":
+ version: 0.6.0
+ resolution: "oxc-walker@npm:0.6.0"
dependencies:
magic-regexp: "npm:^0.10.0"
peerDependencies:
- oxc-parser: ">=0.72.0"
- checksum: 10c0/1ef0f943f2ef55919b4090c8f41f716db5fe11e910e312ae086128104fc9b7f3ff65cb9d9986e5d33f2e8e3bb5f5d71e96c8fd5bdb7ca4cc9cd35c4bd8584ff0
+ oxc-parser: ">=0.98.0"
+ checksum: 10c0/a02aad7bfb003d0107cd9acd64365ec17c6e5cbbe9e676c73399556bb85d31a216637ff05bbaeb748dac9cb6e5f111169f101c955b5fc48ba597551c579f1c09
languageName: node
linkType: hard
@@ -8255,13 +8638,6 @@ __metadata:
languageName: node
linkType: hard
-"perfect-debounce@npm:^1.0.0":
- version: 1.0.0
- resolution: "perfect-debounce@npm:1.0.0"
- checksum: 10c0/e2baac416cae046ef1b270812cf9ccfb0f91c04ea36ac7f5b00bc84cb7f41bdbba087c0ab21b4e02a7ef3a1f1f6db399f137cecec46868bd7d8d88c2a9ee431f
- languageName: node
- linkType: hard
-
"perfect-debounce@npm:^2.0.0":
version: 2.0.0
resolution: "perfect-debounce@npm:2.0.0"
@@ -8340,40 +8716,40 @@ __metadata:
languageName: node
linkType: hard
-"postcss-colormin@npm:^7.0.4":
- version: 7.0.4
- resolution: "postcss-colormin@npm:7.0.4"
+"postcss-colormin@npm:^7.0.5":
+ version: 7.0.5
+ resolution: "postcss-colormin@npm:7.0.5"
dependencies:
- browserslist: "npm:^4.25.1"
+ browserslist: "npm:^4.27.0"
caniuse-api: "npm:^3.0.0"
colord: "npm:^2.9.3"
postcss-value-parser: "npm:^4.2.0"
peerDependencies:
postcss: ^8.4.32
- checksum: 10c0/5f91709acc8dfd6ae5ea31435c01ca1e61bc40730ce68c4ff2312649d95c48c26e3a86dde06280e3b16abaaf4bb86b7f55677ac845e9725c785f6611566e2cba
+ checksum: 10c0/ccd470f416fcbd6db34226eda38df40a4a48578f5b17e5a8d638e01577ba74cda7a511d07ca070c6e15225688f33e1cf2d83c4459492e16e8a23da9c16b077b5
languageName: node
linkType: hard
-"postcss-convert-values@npm:^7.0.7":
- version: 7.0.7
- resolution: "postcss-convert-values@npm:7.0.7"
+"postcss-convert-values@npm:^7.0.8":
+ version: 7.0.8
+ resolution: "postcss-convert-values@npm:7.0.8"
dependencies:
- browserslist: "npm:^4.25.1"
+ browserslist: "npm:^4.27.0"
postcss-value-parser: "npm:^4.2.0"
peerDependencies:
postcss: ^8.4.32
- checksum: 10c0/b50c3d6bdda07597514a09c7d320c721244026ac78d86a27bc40e2153753cf28caeae007ec5dee219ac008ed127e2c62cfe1c01fa4ab77003b3fabdbd1074808
+ checksum: 10c0/d99316bc868292120b1a2abab0bea2c037bef84a7c67c5a4fbd757918e7c84d83803bbfc72bc25f331f088cb21989066879bc640fe434585e249ffbf3a77a07d
languageName: node
linkType: hard
-"postcss-discard-comments@npm:^7.0.4":
- version: 7.0.4
- resolution: "postcss-discard-comments@npm:7.0.4"
+"postcss-discard-comments@npm:^7.0.5":
+ version: 7.0.5
+ resolution: "postcss-discard-comments@npm:7.0.5"
dependencies:
postcss-selector-parser: "npm:^7.1.0"
peerDependencies:
postcss: ^8.4.32
- checksum: 10c0/30081465fec33baa8507782d25cd96559cb3487c023d331a517cf94027d065c26227962a40b1806885400d76d3d27d27f9e7b14807866c7d9bb63c3030b5312a
+ checksum: 10c0/6a0cf4b08878cbb9a63a3ce158c251cc710379257a2e4ab810c3c4eb26349c257f28a1a46d7da02b977701efa48a225968ded9e1f24ac1cec0dc976986a9d2fd
languageName: node
linkType: hard
@@ -8416,17 +8792,17 @@ __metadata:
languageName: node
linkType: hard
-"postcss-merge-rules@npm:^7.0.6":
- version: 7.0.6
- resolution: "postcss-merge-rules@npm:7.0.6"
+"postcss-merge-rules@npm:^7.0.7":
+ version: 7.0.7
+ resolution: "postcss-merge-rules@npm:7.0.7"
dependencies:
- browserslist: "npm:^4.25.1"
+ browserslist: "npm:^4.27.0"
caniuse-api: "npm:^3.0.0"
cssnano-utils: "npm:^5.0.1"
postcss-selector-parser: "npm:^7.1.0"
peerDependencies:
postcss: ^8.4.32
- checksum: 10c0/1708d2e862825f79077aff1f7d82ff815c015929f0fb5bb3fb58dbc83f9bc79ef9aa40ef585afbe2dcb2563ea3516f21332be926e746189649459eb9399cc95e
+ checksum: 10c0/14ffcb250857ba2ae6ebf31be4cc31b23108541d4595b7f46e4f93fa27280182912be43c4c3df03df8a4514e1bca1b77da2ae148fdd63439c2100a1110af3bb0
languageName: node
linkType: hard
@@ -8454,16 +8830,16 @@ __metadata:
languageName: node
linkType: hard
-"postcss-minify-params@npm:^7.0.4":
- version: 7.0.4
- resolution: "postcss-minify-params@npm:7.0.4"
+"postcss-minify-params@npm:^7.0.5":
+ version: 7.0.5
+ resolution: "postcss-minify-params@npm:7.0.5"
dependencies:
- browserslist: "npm:^4.25.1"
+ browserslist: "npm:^4.27.0"
cssnano-utils: "npm:^5.0.1"
postcss-value-parser: "npm:^4.2.0"
peerDependencies:
postcss: ^8.4.32
- checksum: 10c0/412faa91082d4ef3c1540982fc0b69a0aefebfcc4d1b3763613167e0560e0a142cea80092c0b636cafd08c7d348359b04dd00398b2b307383c505e62dffdb3ad
+ checksum: 10c0/13e9b052e452c903e8f5c9c60ad8155b7cfc011722f093cc76e976b10cd0f334342e15add23afdf696f166b79510baf4c0a5fad7c7a5e0520907fd23a5f54c51
languageName: node
linkType: hard
@@ -8543,15 +8919,15 @@ __metadata:
languageName: node
linkType: hard
-"postcss-normalize-unicode@npm:^7.0.4":
- version: 7.0.4
- resolution: "postcss-normalize-unicode@npm:7.0.4"
+"postcss-normalize-unicode@npm:^7.0.5":
+ version: 7.0.5
+ resolution: "postcss-normalize-unicode@npm:7.0.5"
dependencies:
- browserslist: "npm:^4.25.1"
+ browserslist: "npm:^4.27.0"
postcss-value-parser: "npm:^4.2.0"
peerDependencies:
postcss: ^8.4.32
- checksum: 10c0/20efa7e55e94d8f3068ca11c4e24d9023a07dd99c7795a1d4ec755d6004cd3f8452e7c541ed41274ee81d6e37516132b2430ebfa695340c5fe93beac39a6ddb5
+ checksum: 10c0/533b487e4c3c9419fd1ebe8aedad428502265733c025e0ab38d144e0757909033349b4f26f2eba800d27d5a765aa443e82ed0224da15d4cc37761c9cd506b102
languageName: node
linkType: hard
@@ -8589,15 +8965,15 @@ __metadata:
languageName: node
linkType: hard
-"postcss-reduce-initial@npm:^7.0.4":
- version: 7.0.4
- resolution: "postcss-reduce-initial@npm:7.0.4"
+"postcss-reduce-initial@npm:^7.0.5":
+ version: 7.0.5
+ resolution: "postcss-reduce-initial@npm:7.0.5"
dependencies:
- browserslist: "npm:^4.25.1"
+ browserslist: "npm:^4.27.0"
caniuse-api: "npm:^3.0.0"
peerDependencies:
postcss: ^8.4.32
- checksum: 10c0/2763fc58094bf0aca050c8adca62fdc69093777e0af858fc0d95515ce25bc883470c7d27b67886a1aeecadd289a6a87c35da9afd5529bfc22995bf5a13cabcb9
+ checksum: 10c0/e12117c82033df1f061e052e865c3c4d506d8941117318c397a9009ee3ae7d64d6fb71316e746fe092790cab0f74ddc0bf1152c53547c9705d9afaf6f731bbed
languageName: node
linkType: hard
@@ -8698,7 +9074,7 @@ __metadata:
languageName: node
linkType: hard
-"pretty-bytes@npm:^7.0.1":
+"pretty-bytes@npm:^7.1.0":
version: 7.1.0
resolution: "pretty-bytes@npm:7.1.0"
checksum: 10c0/9458f17007bbf8b61d11ef82091bfe7f87bb2f3fd7e6aa917744eb6dc709346995f698ecbf6597ac353b0d44bb7982054f7a2325f3260c9909d09aaafbdab5ca
@@ -8871,6 +9247,13 @@ __metadata:
languageName: node
linkType: hard
+"readdirp@npm:^5.0.0":
+ version: 5.0.0
+ resolution: "readdirp@npm:5.0.0"
+ checksum: 10c0/faf1ec57cff2020f473128da3f8d2a57813cc3a08a36c38cae1c9af32c1579906cc50ba75578043b35bade77e945c098233665797cf9730ba3613a62d6e79219
+ languageName: node
+ linkType: hard
+
"readdirp@npm:~3.6.0":
version: 3.6.0
resolution: "readdirp@npm:3.6.0"
@@ -9017,9 +9400,9 @@ __metadata:
languageName: node
linkType: hard
-"rollup-plugin-visualizer@npm:^6.0.3":
- version: 6.0.3
- resolution: "rollup-plugin-visualizer@npm:6.0.3"
+"rollup-plugin-visualizer@npm:^6.0.5":
+ version: 6.0.5
+ resolution: "rollup-plugin-visualizer@npm:6.0.5"
dependencies:
open: "npm:^8.0.0"
picomatch: "npm:^4.0.2"
@@ -9035,36 +9418,36 @@ __metadata:
optional: true
bin:
rollup-plugin-visualizer: dist/bin/cli.js
- checksum: 10c0/595d68936a6338744e8facd165fceedf7f2ebedc44863e640e725198001ed62948cc4a5d8403aa74e679de92957e4def3b1dffc4a9f8de71e4245929566553a3
+ checksum: 10c0/3824626e97d5033fbb3aa1bbe93c8c17a8569bc47e33c941bde6b90404f2cae70b26fec1b623bd393c3e076338014196c91726ed2c96218edc67e1f21676f7ef
languageName: node
linkType: hard
-"rollup@npm:^4.43.0, rollup@npm:^4.50.1":
- version: 4.52.3
- resolution: "rollup@npm:4.52.3"
+"rollup@npm:^4.43.0, rollup@npm:^4.52.5":
+ version: 4.54.0
+ resolution: "rollup@npm:4.54.0"
dependencies:
- "@rollup/rollup-android-arm-eabi": "npm:4.52.3"
- "@rollup/rollup-android-arm64": "npm:4.52.3"
- "@rollup/rollup-darwin-arm64": "npm:4.52.3"
- "@rollup/rollup-darwin-x64": "npm:4.52.3"
- "@rollup/rollup-freebsd-arm64": "npm:4.52.3"
- "@rollup/rollup-freebsd-x64": "npm:4.52.3"
- "@rollup/rollup-linux-arm-gnueabihf": "npm:4.52.3"
- "@rollup/rollup-linux-arm-musleabihf": "npm:4.52.3"
- "@rollup/rollup-linux-arm64-gnu": "npm:4.52.3"
- "@rollup/rollup-linux-arm64-musl": "npm:4.52.3"
- "@rollup/rollup-linux-loong64-gnu": "npm:4.52.3"
- "@rollup/rollup-linux-ppc64-gnu": "npm:4.52.3"
- "@rollup/rollup-linux-riscv64-gnu": "npm:4.52.3"
- "@rollup/rollup-linux-riscv64-musl": "npm:4.52.3"
- "@rollup/rollup-linux-s390x-gnu": "npm:4.52.3"
- "@rollup/rollup-linux-x64-gnu": "npm:4.52.3"
- "@rollup/rollup-linux-x64-musl": "npm:4.52.3"
- "@rollup/rollup-openharmony-arm64": "npm:4.52.3"
- "@rollup/rollup-win32-arm64-msvc": "npm:4.52.3"
- "@rollup/rollup-win32-ia32-msvc": "npm:4.52.3"
- "@rollup/rollup-win32-x64-gnu": "npm:4.52.3"
- "@rollup/rollup-win32-x64-msvc": "npm:4.52.3"
+ "@rollup/rollup-android-arm-eabi": "npm:4.54.0"
+ "@rollup/rollup-android-arm64": "npm:4.54.0"
+ "@rollup/rollup-darwin-arm64": "npm:4.54.0"
+ "@rollup/rollup-darwin-x64": "npm:4.54.0"
+ "@rollup/rollup-freebsd-arm64": "npm:4.54.0"
+ "@rollup/rollup-freebsd-x64": "npm:4.54.0"
+ "@rollup/rollup-linux-arm-gnueabihf": "npm:4.54.0"
+ "@rollup/rollup-linux-arm-musleabihf": "npm:4.54.0"
+ "@rollup/rollup-linux-arm64-gnu": "npm:4.54.0"
+ "@rollup/rollup-linux-arm64-musl": "npm:4.54.0"
+ "@rollup/rollup-linux-loong64-gnu": "npm:4.54.0"
+ "@rollup/rollup-linux-ppc64-gnu": "npm:4.54.0"
+ "@rollup/rollup-linux-riscv64-gnu": "npm:4.54.0"
+ "@rollup/rollup-linux-riscv64-musl": "npm:4.54.0"
+ "@rollup/rollup-linux-s390x-gnu": "npm:4.54.0"
+ "@rollup/rollup-linux-x64-gnu": "npm:4.54.0"
+ "@rollup/rollup-linux-x64-musl": "npm:4.54.0"
+ "@rollup/rollup-openharmony-arm64": "npm:4.54.0"
+ "@rollup/rollup-win32-arm64-msvc": "npm:4.54.0"
+ "@rollup/rollup-win32-ia32-msvc": "npm:4.54.0"
+ "@rollup/rollup-win32-x64-gnu": "npm:4.54.0"
+ "@rollup/rollup-win32-x64-msvc": "npm:4.54.0"
"@types/estree": "npm:1.0.8"
fsevents: "npm:~2.3.2"
dependenciesMeta:
@@ -9116,7 +9499,7 @@ __metadata:
optional: true
bin:
rollup: dist/bin/rollup
- checksum: 10c0/5a7a3a2e8c7558df5652ecc126e0d9133df4d58c5a001777377202b52517fa48b43be5e21a2cbab6d85975b765991af72666b5132813da6e86ea47ae963b4e71
+ checksum: 10c0/62e5fd5d43e72751ac631f13fd7e70bec0fc3809231d5e087c3c0811945e7b8f0956620c5bed4e0cd67085325324266989e5ea4d22985c2677119ac7809b6455
languageName: node
linkType: hard
@@ -9159,7 +9542,7 @@ __metadata:
languageName: node
linkType: hard
-"safer-buffer@npm:>= 2.1.2 < 3.0.0":
+"safer-buffer@npm:>= 2.1.2 < 3, safer-buffer@npm:>= 2.1.2 < 3.0.0":
version: 2.1.2
resolution: "safer-buffer@npm:2.1.2"
checksum: 10c0/7e3c8b2e88a1841c9671094bbaeebd94448111dd90a81a1f606f3f67708a6ec57763b3b47f06da09fc6054193e0e6709e77325415dc8422b04497a8070fa02d4
@@ -9429,12 +9812,12 @@ __metadata:
languageName: node
linkType: hard
-"semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.3, semver@npm:^7.7.2":
- version: 7.7.2
- resolution: "semver@npm:7.7.2"
+"semver@npm:^7.3.5, semver@npm:^7.5.3, semver@npm:^7.5.4, semver@npm:^7.6.0, semver@npm:^7.6.3, semver@npm:^7.7.2, semver@npm:^7.7.3":
+ version: 7.7.3
+ resolution: "semver@npm:7.7.3"
bin:
semver: bin/semver.js
- checksum: 10c0/aca305edfbf2383c22571cb7714f48cadc7ac95371b4b52362fb8eeffdfbc0de0669368b82b2b15978f8848f01d7114da65697e56cd8c37b0dab8c58e543f9ea
+ checksum: 10c0/4afe5c986567db82f44c8c6faef8fe9df2a9b1d98098fc1721f57c696c4c21cebd572f297fc21002f81889492345b8470473bc6f4aff5fb032a6ea59ea2bc45e
languageName: node
linkType: hard
@@ -9466,6 +9849,13 @@ __metadata:
languageName: node
linkType: hard
+"seroval@npm:^1.4.0":
+ version: 1.4.1
+ resolution: "seroval@npm:1.4.1"
+ checksum: 10c0/9ca88eb8ffbc2513cbfbb3e8a968207ea3b67774680f914cc5a41c7917f2ddc54fae0926f43cbd801a315def49c60fa428cc3cb748ea19bc7f5d1fcd7dd28c7f
+ languageName: node
+ linkType: hard
+
"serve-placeholder@npm:^2.0.2":
version: 2.0.2
resolution: "serve-placeholder@npm:2.0.2"
@@ -9524,14 +9914,14 @@ __metadata:
languageName: node
linkType: hard
-"simple-git@npm:^3.28.0":
- version: 3.28.0
- resolution: "simple-git@npm:3.28.0"
+"simple-git@npm:^3.30.0":
+ version: 3.30.0
+ resolution: "simple-git@npm:3.30.0"
dependencies:
"@kwsites/file-exists": "npm:^1.1.1"
"@kwsites/promise-deferred": "npm:^1.1.1"
debug: "npm:^4.4.0"
- checksum: 10c0/d78b8f5884967513efa3d3ee419be421207367c65b680ee45f4c9571f909ba89933ffa27d6d7972fbb759bb30b00e435e35ade2b9e788661feb996da6f461932
+ checksum: 10c0/ca123580944d55c7f93d17f7a89b39cd43245916b35ed3a8b1269d1f2ae9200e17f098e42af4a2572313726f1273641cbe0748a1ea37d8c803c181fb69068b1d
languageName: node
linkType: hard
@@ -9617,7 +10007,7 @@ __metadata:
languageName: node
linkType: hard
-"source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.0.1, source-map-js@npm:^1.2.0, source-map-js@npm:^1.2.1":
+"source-map-js@npm:>=0.6.2 <2.0.0, source-map-js@npm:^1.0.1, source-map-js@npm:^1.2.1":
version: 1.2.1
resolution: "source-map-js@npm:1.2.1"
checksum: 10c0/7bda1fc4c197e3c6ff17de1b8b2c20e60af81b63a52cb32ec5a5d67a20a7d42651e2cb34ebe93833c5a2a084377e17455854fee3e21e7925c64a51b6a52b0faf
@@ -9679,6 +10069,15 @@ __metadata:
languageName: node
linkType: hard
+"srvx@npm:^0.9.8":
+ version: 0.9.8
+ resolution: "srvx@npm:0.9.8"
+ bin:
+ srvx: bin/srvx.mjs
+ checksum: 10c0/4f713824d5623ff088d818ae6b05ef3cef3cb914eeb549a316be433c2f5b791ac96f8b1726ca57a64a7246c681fd5ded01a9faa8e89b8368777fac104a8f95b2
+ languageName: node
+ linkType: hard
+
"ssri@npm:^12.0.0":
version: 12.0.0
resolution: "ssri@npm:12.0.0"
@@ -9709,10 +10108,10 @@ __metadata:
languageName: node
linkType: hard
-"std-env@npm:^3.7.0, std-env@npm:^3.8.1, std-env@npm:^3.9.0":
- version: 3.9.0
- resolution: "std-env@npm:3.9.0"
- checksum: 10c0/4a6f9218aef3f41046c3c7ecf1f98df00b30a07f4f35c6d47b28329bc2531eef820828951c7d7b39a1c5eb19ad8a46e3ddfc7deb28f0a2f3ceebee11bab7ba50
+"std-env@npm:^3.10.0, std-env@npm:^3.7.0, std-env@npm:^3.8.1, std-env@npm:^3.9.0":
+ version: 3.10.0
+ resolution: "std-env@npm:3.10.0"
+ checksum: 10c0/1814927a45004d36dde6707eaf17552a546769bc79a6421be2c16ce77d238158dfe5de30910b78ec30d95135cc1c59ea73ee22d2ca170f8b9753f84da34c427f
languageName: node
linkType: hard
@@ -9776,7 +10175,7 @@ __metadata:
languageName: node
linkType: hard
-"strip-ansi@npm:^7.0.1, strip-ansi@npm:^7.1.0":
+"strip-ansi@npm:^7.0.1":
version: 7.1.2
resolution: "strip-ansi@npm:7.1.2"
dependencies:
@@ -9806,7 +10205,7 @@ __metadata:
languageName: node
linkType: hard
-"strip-literal@npm:^3.0.0":
+"strip-literal@npm:^3.1.0":
version: 3.1.0
resolution: "strip-literal@npm:3.1.0"
dependencies:
@@ -9934,6 +10333,13 @@ __metadata:
languageName: node
linkType: hard
+"tagged-tag@npm:^1.0.0":
+ version: 1.0.0
+ resolution: "tagged-tag@npm:1.0.0"
+ checksum: 10c0/91d25c9ffb86a91f20522cefb2cbec9b64caa1febe27ad0df52f08993ff60888022d771e868e6416cf2e72dab68449d2139e8709ba009b74c6c7ecd4000048d1
+ languageName: node
+ linkType: hard
+
"tailwindcss-primeui@npm:^0.6.1":
version: 0.6.1
resolution: "tailwindcss-primeui@npm:0.6.1"
@@ -10018,14 +10424,14 @@ __metadata:
languageName: node
linkType: hard
-"tinyexec@npm:^1.0.1":
- version: 1.0.1
- resolution: "tinyexec@npm:1.0.1"
- checksum: 10c0/e1ec3c8194a0427ce001ba69fd933d0c957e2b8994808189ed8020d3e0c01299aea8ecf0083cc514ecbf90754695895f2b5c0eac07eb2d0c406f7d4fbb8feade
+"tinyexec@npm:^1.0.1, tinyexec@npm:^1.0.2":
+ version: 1.0.2
+ resolution: "tinyexec@npm:1.0.2"
+ checksum: 10c0/1261a8e34c9b539a9aae3b7f0bb5372045ff28ee1eba035a2a059e532198fe1a182ec61ac60fa0b4a4129f0c4c4b1d2d57355b5cb9aa2d17ac9454ecace502ee
languageName: node
linkType: hard
-"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.14, tinyglobby@npm:^0.2.15":
+"tinyglobby@npm:^0.2.12, tinyglobby@npm:^0.2.13, tinyglobby@npm:^0.2.15":
version: 0.2.15
resolution: "tinyglobby@npm:0.2.15"
dependencies:
@@ -10117,10 +10523,12 @@ __metadata:
languageName: node
linkType: hard
-"type-fest@npm:^4.18.2":
- version: 4.41.0
- resolution: "type-fest@npm:4.41.0"
- checksum: 10c0/f5ca697797ed5e88d33ac8f1fec21921839871f808dc59345c9cf67345bfb958ce41bd821165dbf3ae591cedec2bf6fe8882098dfdd8dc54320b859711a2c1e4
+"type-fest@npm:^5.0.0":
+ version: 5.3.1
+ resolution: "type-fest@npm:5.3.1"
+ dependencies:
+ tagged-tag: "npm:^1.0.0"
+ checksum: 10c0/3282cf11f5e8708321c109b5a72967702cf4c3b928b4d77f5819600b23915dc6a6b8f16cde4182cfbad308973ed3eeea544825cafe9657634ac1f331dc940315
languageName: node
linkType: hard
@@ -10151,7 +10559,7 @@ __metadata:
languageName: node
linkType: hard
-"ufo@npm:1.6.1, ufo@npm:^1.5.4, ufo@npm:^1.6.1":
+"ufo@npm:^1.5.4, ufo@npm:^1.6.1":
version: 1.6.1
resolution: "ufo@npm:1.6.1"
checksum: 10c0/5a9f041e5945fba7c189d5410508cbcbefef80b253ed29aa2e1f8a2b86f4bd51af44ee18d4485e6d3468c92be9bf4a42e3a2b72dcaf27ce39ce947ec994f1e6b
@@ -10184,25 +10592,21 @@ __metadata:
languageName: node
linkType: hard
-"unenv@npm:^2.0.0-rc.21":
- version: 2.0.0-rc.21
- resolution: "unenv@npm:2.0.0-rc.21"
+"unenv@npm:^2.0.0-rc.23, unenv@npm:^2.0.0-rc.24":
+ version: 2.0.0-rc.24
+ resolution: "unenv@npm:2.0.0-rc.24"
dependencies:
- defu: "npm:^6.1.4"
- exsolve: "npm:^1.0.7"
- ohash: "npm:^2.0.11"
pathe: "npm:^2.0.3"
- ufo: "npm:^1.6.1"
- checksum: 10c0/2fea6efed952314652f1c56c2bfcee1c1731a45409825ee8fd216f2781d289d8a98e4742b049fc33bbad888ca4b1a8f192297a7667cbcc0d97c04dfc12ade5a3
+ checksum: 10c0/e8556b4287fcf647f23db790eea2782cc79f182370718680e3aba4753d5fb7177abf5d6df489c8f74f7e3ad6cd554b8623cc01caf3e6f2d5548e69178adb1691
languageName: node
linkType: hard
-"unhead@npm:2.0.17":
- version: 2.0.17
- resolution: "unhead@npm:2.0.17"
+"unhead@npm:2.0.19":
+ version: 2.0.19
+ resolution: "unhead@npm:2.0.19"
dependencies:
hookable: "npm:^5.5.3"
- checksum: 10c0/c5e28c56f29e8b88fe36ea7f411f278f5504c10ee9f882c7b27557f1a58932efa14c3232914a4221eaf36f579ea4e0d0eb43324d9e37de5086673c4df6c15226
+ checksum: 10c0/a7904c1e9041cc1b15fafbbeb2526f180a9bd05751eb1bd2b1f3f9f5f3caada6372cbbf72e0879df6be78773ed1dbc6a724aaee35031e3b664cf6f6fb5f9e27a
languageName: node
linkType: hard
@@ -10243,25 +10647,25 @@ __metadata:
languageName: node
linkType: hard
-"unimport@npm:^5.2.0":
- version: 5.4.0
- resolution: "unimport@npm:5.4.0"
+"unimport@npm:^5.2.0, unimport@npm:^5.5.0":
+ version: 5.6.0
+ resolution: "unimport@npm:5.6.0"
dependencies:
acorn: "npm:^8.15.0"
escape-string-regexp: "npm:^5.0.0"
estree-walker: "npm:^3.0.3"
local-pkg: "npm:^1.1.2"
- magic-string: "npm:^0.30.19"
+ magic-string: "npm:^0.30.21"
mlly: "npm:^1.8.0"
pathe: "npm:^2.0.3"
picomatch: "npm:^4.0.3"
pkg-types: "npm:^2.3.0"
scule: "npm:^1.3.0"
- strip-literal: "npm:^3.0.0"
+ strip-literal: "npm:^3.1.0"
tinyglobby: "npm:^0.2.15"
- unplugin: "npm:^2.3.10"
- unplugin-utils: "npm:^0.3.0"
- checksum: 10c0/75755543d626c73922b065a06291025c2964b62208c8cbbd414b34a8876e66006449e5feb8efb77f7a82dfddc3c98fabfd2c42467eb9bb7fceab7a59d7079ac7
+ unplugin: "npm:^2.3.11"
+ unplugin-utils: "npm:^0.3.1"
+ checksum: 10c0/f61d07524617845ba8e5ba1abb49cb3d29109ccfb6c21aa8fd5c10dbe460ca819c46d19998aed7b7b1ce7d7aa944bf850d23d695a44de15eabedd96bc542b851
languageName: node
linkType: hard
@@ -10332,13 +10736,13 @@ __metadata:
languageName: node
linkType: hard
-"unplugin-utils@npm:^0.3.0":
- version: 0.3.0
- resolution: "unplugin-utils@npm:0.3.0"
+"unplugin-utils@npm:^0.3.0, unplugin-utils@npm:^0.3.1":
+ version: 0.3.1
+ resolution: "unplugin-utils@npm:0.3.1"
dependencies:
pathe: "npm:^2.0.3"
picomatch: "npm:^4.0.3"
- checksum: 10c0/80c342fa8f00adada52e16fd8262bdd2936ec49486f97cf6ea2b9bdd4c2c70dc9ba8574e8b4634ce1fcf7fc3b0163c6059732606648b304f2c8db5d69de2ca7f
+ checksum: 10c0/e563b15f2ae604d4f84ac664a7b1738585d2e82a068e59612589e61e555b3d93aa7379a4b6938df3788fe5658cae53d752dd72f6072bd4a642b6e0385c0e4eab
languageName: node
linkType: hard
@@ -10367,51 +10771,52 @@ __metadata:
languageName: node
linkType: hard
-"unplugin-vue-router@npm:^0.15.0":
- version: 0.15.0
- resolution: "unplugin-vue-router@npm:0.15.0"
+"unplugin-vue-router@npm:^0.19.0":
+ version: 0.19.1
+ resolution: "unplugin-vue-router@npm:0.19.1"
dependencies:
- "@vue-macros/common": "npm:3.0.0-beta.16"
- "@vue/language-core": "npm:^3.0.1"
- ast-walker-scope: "npm:^0.8.1"
- chokidar: "npm:^4.0.3"
+ "@babel/generator": "npm:^7.28.5"
+ "@vue-macros/common": "npm:^3.1.1"
+ "@vue/language-core": "npm:^3.1.8"
+ ast-walker-scope: "npm:^0.8.3"
+ chokidar: "npm:^5.0.0"
json5: "npm:^2.2.3"
- local-pkg: "npm:^1.1.1"
- magic-string: "npm:^0.30.17"
- mlly: "npm:^1.7.4"
+ local-pkg: "npm:^1.1.2"
+ magic-string: "npm:^0.30.21"
+ mlly: "npm:^1.8.0"
muggle-string: "npm:^0.4.1"
pathe: "npm:^2.0.3"
picomatch: "npm:^4.0.3"
scule: "npm:^1.3.0"
- tinyglobby: "npm:^0.2.14"
- unplugin: "npm:^2.3.5"
- unplugin-utils: "npm:^0.2.4"
- yaml: "npm:^2.8.0"
+ tinyglobby: "npm:^0.2.15"
+ unplugin: "npm:^2.3.11"
+ unplugin-utils: "npm:^0.3.1"
+ yaml: "npm:^2.8.2"
peerDependencies:
"@vue/compiler-sfc": ^3.5.17
- vue-router: ^4.5.1
+ vue-router: ^4.6.0
peerDependenciesMeta:
vue-router:
optional: true
- checksum: 10c0/9efa96e04189cac5948234cefc6821ac0a31f747d9747fc6fa0356949bc043c8c56decff2ebce54f22ed5683e21f6d7d31d3237114163b04bca65f2b2b45c772
+ checksum: 10c0/755996e786756ddc99282825e9acb7f7e219c81abee9765eda26b1ddc83ba4f3d3a7e435b2e9659bed50c5d16f0f57aa3bce59d5c0380e68ba91a44410d87edc
languageName: node
linkType: hard
-"unplugin@npm:^2.0.0, unplugin@npm:^2.1.0, unplugin@npm:^2.2.0, unplugin@npm:^2.3.10, unplugin@npm:^2.3.2, unplugin@npm:^2.3.3, unplugin@npm:^2.3.5, unplugin@npm:^2.3.6":
- version: 2.3.10
- resolution: "unplugin@npm:2.3.10"
+"unplugin@npm:^2.0.0, unplugin@npm:^2.1.0, unplugin@npm:^2.2.0, unplugin@npm:^2.3.11, unplugin@npm:^2.3.2, unplugin@npm:^2.3.3, unplugin@npm:^2.3.6":
+ version: 2.3.11
+ resolution: "unplugin@npm:2.3.11"
dependencies:
"@jridgewell/remapping": "npm:^2.3.5"
acorn: "npm:^8.15.0"
picomatch: "npm:^4.0.3"
webpack-virtual-modules: "npm:^0.6.2"
- checksum: 10c0/29dcd738772aeff91c6f0154f156c95c58a37a4674fcb7cc34d6868af763834f0f447a1c3af074818c0c5602baead49bd3b9399a13f0425d69a00a527e58ddda
+ checksum: 10c0/273c1eab0eca4470c7317428689295c31dbe8ab0b306504de9f03cd20c156debb4131bef24b27ac615862958c5dd950a3951d26c0723ea774652ab3624149cff
languageName: node
linkType: hard
-"unstorage@npm:^1.16.0, unstorage@npm:^1.17.1":
- version: 1.17.1
- resolution: "unstorage@npm:1.17.1"
+"unstorage@npm:^1.16.0, unstorage@npm:^1.17.1, unstorage@npm:^1.17.3":
+ version: 1.17.3
+ resolution: "unstorage@npm:1.17.3"
dependencies:
anymatch: "npm:^3.1.3"
chokidar: "npm:^4.0.3"
@@ -10419,7 +10824,7 @@ __metadata:
h3: "npm:^1.15.4"
lru-cache: "npm:^10.4.3"
node-fetch-native: "npm:^1.6.7"
- ofetch: "npm:^1.4.1"
+ ofetch: "npm:^1.5.1"
ufo: "npm:^1.6.1"
peerDependencies:
"@azure/app-configuration": ^1.8.0
@@ -10480,7 +10885,7 @@ __metadata:
optional: true
uploadthing:
optional: true
- checksum: 10c0/e315a0888e349f9938356c0a699a2dff5d52cf57398fbbcb07062aaf3643baf47652982d85de6557acf5dcb3a28425cd3b2f05ce851732a6e9984d18238618eb
+ checksum: 10c0/46d920a79790a6d22273d5972d220a0b26fce7d8b40b5c563c1f71bec12ae7b0b403b59001773b061fa5a099de3ff5e7fd6b2a65198e89a21a5dbfd9225a217f
languageName: node
linkType: hard
@@ -10526,9 +10931,9 @@ __metadata:
languageName: node
linkType: hard
-"update-browserslist-db@npm:^1.1.3":
- version: 1.1.3
- resolution: "update-browserslist-db@npm:1.1.3"
+"update-browserslist-db@npm:^1.2.0":
+ version: 1.2.3
+ resolution: "update-browserslist-db@npm:1.2.3"
dependencies:
escalade: "npm:^3.2.0"
picocolors: "npm:^1.1.1"
@@ -10536,7 +10941,7 @@ __metadata:
browserslist: ">= 4.21.0"
bin:
update-browserslist-db: cli.js
- checksum: 10c0/682e8ecbf9de474a626f6462aa85927936cdd256fe584c6df2508b0df9f7362c44c957e9970df55dfe44d3623807d26316ea2c7d26b80bb76a16c56c37233c32
+ checksum: 10c0/13a00355ea822388f68af57410ce3255941d5fb9b7c49342c4709a07c9f230bbef7f7499ae0ca7e0de532e79a82cc0c4edbd125f1a323a1845bf914efddf8bec
languageName: node
linkType: hard
@@ -10582,7 +10987,7 @@ __metadata:
languageName: node
linkType: hard
-"vite-hot-client@npm:^2.0.4, vite-hot-client@npm:^2.1.0":
+"vite-hot-client@npm:^2.1.0":
version: 2.1.0
resolution: "vite-hot-client@npm:2.1.0"
peerDependencies:
@@ -10591,42 +10996,42 @@ __metadata:
languageName: node
linkType: hard
-"vite-node@npm:^3.2.4":
- version: 3.2.4
- resolution: "vite-node@npm:3.2.4"
+"vite-node@npm:^5.2.0":
+ version: 5.2.0
+ resolution: "vite-node@npm:5.2.0"
dependencies:
cac: "npm:^6.7.14"
- debug: "npm:^4.4.1"
es-module-lexer: "npm:^1.7.0"
+ obug: "npm:^2.0.0"
pathe: "npm:^2.0.3"
- vite: "npm:^5.0.0 || ^6.0.0 || ^7.0.0-0"
+ vite: "npm:^7.2.2"
bin:
- vite-node: vite-node.mjs
- checksum: 10c0/6ceca67c002f8ef6397d58b9539f80f2b5d79e103a18367288b3f00a8ab55affa3d711d86d9112fce5a7fa658a212a087a005a045eb8f4758947dd99af2a6c6b
+ vite-node: dist/cli.mjs
+ checksum: 10c0/16115db777a98eb6185b54e919f78edfc6031eebccf1b307ff3fba9ee54e4f2e024e3236c3d05bab0c3b9bb0a8486677dd66864a12c7b8d8d0c3ad8e5d4ef787
languageName: node
linkType: hard
-"vite-plugin-checker@npm:^0.10.3":
- version: 0.10.3
- resolution: "vite-plugin-checker@npm:0.10.3"
+"vite-plugin-checker@npm:^0.12.0":
+ version: 0.12.0
+ resolution: "vite-plugin-checker@npm:0.12.0"
dependencies:
"@babel/code-frame": "npm:^7.27.1"
chokidar: "npm:^4.0.3"
npm-run-path: "npm:^6.0.0"
picocolors: "npm:^1.1.1"
picomatch: "npm:^4.0.3"
- strip-ansi: "npm:^7.1.0"
tiny-invariant: "npm:^1.3.3"
- tinyglobby: "npm:^0.2.14"
+ tinyglobby: "npm:^0.2.15"
vscode-uri: "npm:^3.1.0"
peerDependencies:
"@biomejs/biome": ">=1.7"
- eslint: ">=7"
+ eslint: ">=9.39.1"
meow: ^13.2.0
optionator: ^0.9.4
+ oxlint: ">=1"
stylelint: ">=16"
typescript: "*"
- vite: ">=2.0.0"
+ vite: ">=5.4.21"
vls: "*"
vti: "*"
vue-tsc: ~2.2.10 || ^3.0.0
@@ -10639,6 +11044,8 @@ __metadata:
optional: true
optionator:
optional: true
+ oxlint:
+ optional: true
stylelint:
optional: true
typescript:
@@ -10649,7 +11056,7 @@ __metadata:
optional: true
vue-tsc:
optional: true
- checksum: 10c0/09668f0a0e78ec03ac73d7aee1b956afd557a59bfd1b2fa822dc177b8bb2a7f996e3e7abc41b84c6469bf60961b364a1cced7c01a11461b7cb2309f29ab368c7
+ checksum: 10c0/50b5805488771bdd08c806647d68812088bd747044deb89cb838c140302c3ab45fb78e88cfc25fa32568a2b6a57dd7c25b1739ab1a1c4e41dafb5b16378a1c78
languageName: node
linkType: hard
@@ -10675,27 +11082,27 @@ __metadata:
languageName: node
linkType: hard
-"vite-plugin-vue-tracer@npm:^1.0.0":
- version: 1.0.1
- resolution: "vite-plugin-vue-tracer@npm:1.0.1"
+"vite-plugin-vue-tracer@npm:^1.1.3":
+ version: 1.2.0
+ resolution: "vite-plugin-vue-tracer@npm:1.2.0"
dependencies:
estree-walker: "npm:^3.0.3"
- exsolve: "npm:^1.0.7"
- magic-string: "npm:^0.30.19"
+ exsolve: "npm:^1.0.8"
+ magic-string: "npm:^0.30.21"
pathe: "npm:^2.0.3"
source-map-js: "npm:^1.2.1"
peerDependencies:
vite: ^6.0.0 || ^7.0.0
vue: ^3.5.0
- checksum: 10c0/70910942120a27910a45530f2befa2dd13c9fdc07bec5fa7ff6969944f8cc8891b3e8d4168165c2e9d16c06919265d518b8d888195d225a8961e4cf5f37cdaff
+ checksum: 10c0/93c6ab9527251db4decd20834edc7e5f01e0e4b56566f065bc56d5f82d043ae906caafcbfc040cd0ca3db8bd59781d4af57f2bd04e983744732e992a44ba1ee0
languageName: node
linkType: hard
-"vite@npm:^5.0.0 || ^6.0.0 || ^7.0.0-0, vite@npm:^7.1.5":
- version: 7.1.7
- resolution: "vite@npm:7.1.7"
+"vite@npm:^7.2.2, vite@npm:^7.2.7":
+ version: 7.3.0
+ resolution: "vite@npm:7.3.0"
dependencies:
- esbuild: "npm:^0.25.0"
+ esbuild: "npm:^0.27.0"
fdir: "npm:^6.5.0"
fsevents: "npm:~2.3.3"
picomatch: "npm:^4.0.3"
@@ -10742,7 +11149,7 @@ __metadata:
optional: true
bin:
vite: bin/vite.js
- checksum: 10c0/3f6bd61a65aaa81368f4dda804f0e23b103664724218ccb5a0b1a0c7e284df498107b57ced951dc40ae4c5d472435bc8fb5c836414e729ee7e102809eaf6ff80
+ checksum: 10c0/0457c196cdd5761ec351c0f353945430fbad330e615b9eeab729c8ae163334f18acdc1d9cd7d9d673dbf111f07f6e4f0b25d4ac32360e65b4a6df9991046f3ff
languageName: node
linkType: hard
@@ -10753,12 +11160,12 @@ __metadata:
languageName: node
linkType: hard
-"vue-bundle-renderer@npm:^2.1.2":
- version: 2.1.2
- resolution: "vue-bundle-renderer@npm:2.1.2"
+"vue-bundle-renderer@npm:^2.2.0":
+ version: 2.2.0
+ resolution: "vue-bundle-renderer@npm:2.2.0"
dependencies:
ufo: "npm:^1.6.1"
- checksum: 10c0/f8b4c21b43cf80a1375a940b6963e05e8d9b20132d654a33ca1f176c38671cd1f9ef20fa32f4e9c1600c2c9ab19d388cff23c1460c7a6af915f0e36945aef10c
+ checksum: 10c0/e3791c6e3870c1d14876230ba539aa644ef8f218281e26b799619a73c5fd0fee08d5766e93be7c8036ceece83b26bdc3f7665fe169a13bc18bded0336e0bbac9
languageName: node
linkType: hard
@@ -10785,32 +11192,32 @@ __metadata:
languageName: node
linkType: hard
-"vue-router@npm:^4.5.1":
- version: 4.5.1
- resolution: "vue-router@npm:4.5.1"
+"vue-router@npm:^4.5.1, vue-router@npm:^4.6.3":
+ version: 4.6.4
+ resolution: "vue-router@npm:4.6.4"
dependencies:
"@vue/devtools-api": "npm:^6.6.4"
peerDependencies:
- vue: ^3.2.0
- checksum: 10c0/89fbc11e46c19a4c4d62b807596a0210726dc09bd9e6a319ded1ac0951e6933e581c56acd1b846d3891673b9bad7348564d28ecd8424126d63578b3b5d291d96
+ vue: ^3.5.0
+ checksum: 10c0/9dcbe1124f1f444ae263ca37914829eea1ebff3feaa182559efee611dfd4436bbebe0ebffdcb60e37fecfb2fbdc691346df00996eeba708485e9ea9b8a7dd193
languageName: node
linkType: hard
-"vue@npm:^3.5.21, vue@npm:^3.5.22":
- version: 3.5.22
- resolution: "vue@npm:3.5.22"
+"vue@npm:^3.5.22, vue@npm:^3.5.25":
+ version: 3.5.26
+ resolution: "vue@npm:3.5.26"
dependencies:
- "@vue/compiler-dom": "npm:3.5.22"
- "@vue/compiler-sfc": "npm:3.5.22"
- "@vue/runtime-dom": "npm:3.5.22"
- "@vue/server-renderer": "npm:3.5.22"
- "@vue/shared": "npm:3.5.22"
+ "@vue/compiler-dom": "npm:3.5.26"
+ "@vue/compiler-sfc": "npm:3.5.26"
+ "@vue/runtime-dom": "npm:3.5.26"
+ "@vue/server-renderer": "npm:3.5.26"
+ "@vue/shared": "npm:3.5.26"
peerDependencies:
typescript: "*"
peerDependenciesMeta:
typescript:
optional: true
- checksum: 10c0/ceee900a627c2274985da4a6cf1ceb093d3b6c59cc9e9dee606aedd2147918078ccb21bc0a39aacbd29d84449491e46e4b188e4a9fb57ff6c6d146ccb1baf752
+ checksum: 10c0/057630af8a278b8a682974e3f92388821701be800b3d545d9b45c1444138ccaff1902d2065dab0e7cb971c0509e6c22c09e90787ee5bc8d262ede7012e61f871
languageName: node
linkType: hard
@@ -10980,12 +11387,12 @@ __metadata:
languageName: node
linkType: hard
-"yaml@npm:^2.0.0, yaml@npm:^2.8.0, yaml@npm:^2.8.1":
- version: 2.8.1
- resolution: "yaml@npm:2.8.1"
+"yaml@npm:^2.0.0, yaml@npm:^2.8.1, yaml@npm:^2.8.2":
+ version: 2.8.2
+ resolution: "yaml@npm:2.8.2"
bin:
yaml: bin.mjs
- checksum: 10c0/7c587be00d9303d2ae1566e03bc5bc7fe978ba0d9bf39cc418c3139d37929dfcb93a230d9749f2cb578b6aa5d9ebebc322415e4b653cb83acd8bc0bc321707f3
+ checksum: 10c0/703e4dc1e34b324aa66876d63618dcacb9ed49f7e7fe9b70f1e703645be8d640f68ab84f12b86df8ac960bac37acf5513e115de7c970940617ce0343c8c9cd96
languageName: node
linkType: hard
@@ -11028,16 +11435,16 @@ __metadata:
languageName: node
linkType: hard
-"youch@npm:^4.1.0-beta.11":
- version: 4.1.0-beta.11
- resolution: "youch@npm:4.1.0-beta.11"
+"youch@npm:^4.1.0-beta.11, youch@npm:^4.1.0-beta.13":
+ version: 4.1.0-beta.13
+ resolution: "youch@npm:4.1.0-beta.13"
dependencies:
"@poppinss/colors": "npm:^4.1.5"
- "@poppinss/dumper": "npm:^0.6.4"
- "@speed-highlight/core": "npm:^1.2.7"
- cookie: "npm:^1.0.2"
+ "@poppinss/dumper": "npm:^0.6.5"
+ "@speed-highlight/core": "npm:^1.2.9"
+ cookie-es: "npm:^2.0.0"
youch-core: "npm:^0.3.3"
- checksum: 10c0/85844c7723db47f8aa83b55dd44e370e4610072a1892164920c5696da61cfbeddaebaf89bc39cf7217c40aca099d493d9eb775857956cf04bff709162a9dfd15
+ checksum: 10c0/bd078f6cc3a0c6d4e22579484522ce194c7af198c50e99dd216ea04301a79261a7c202d91a51d2e0e926bb13aeb9667618577799326ea1d474b2ee8abf31d538
languageName: node
linkType: hard
diff --git a/server/socket/webrtc.ts b/server/socket/webrtc.ts
index bdba44c..c2ac4da 100644
--- a/server/socket/webrtc.ts
+++ b/server/socket/webrtc.ts
@@ -102,7 +102,7 @@ interface ServerToClientEvents {
producers: (arg: ProducerShort[]) => void
newConsumer: (
arg: {
- peerId: string
+ socketId: string
producerId: types.Producer['id']
id: types.Consumer['id']
kind: types.MediaKind
@@ -141,7 +141,7 @@ type SomeSocket = Socket = io.of('/webrtc')
- namespace.on('connection', (socket) => {
+ namespace.on('connection', async (socket) => {
consola.info('[WebRtc]', 'Client connected', socket.id)
socket.data.joined = false
@@ -153,7 +153,7 @@ export default function (io: SocketServer, router: types.Router) {
socket.data.producers = new Map()
socket.data.consumers = new Map()
- prisma.user.findUnique({
+ const { id, username, displayName } = await prisma.user.findUnique({
where: {
id: socket.handshake.auth.userId,
},
@@ -162,14 +162,14 @@ export default function (io: SocketServer, router: types.Router) {
username: true,
displayName: true,
},
- }).then(({ id, username, displayName }) => {
- socket.data.userId = id
- socket.data.username = username
- socket.data.displayName = displayName
-
- socket.emit('authenticated')
})
+ socket.data.userId = id
+ socket.data.username = username
+ socket.data.displayName = displayName
+
+ socket.emit('authenticated')
+
socket.on('join', async ({ rtpCapabilities }, cb) => {
if (socket.data.joined) {
consola.error('[WebRtc]', 'Already joined')
@@ -231,7 +231,7 @@ export default function (io: SocketServer, router: types.Router) {
dtlsParameters: transport.dtlsParameters,
})
- transport.on('icestatechange', (iceState) => {
+ transport.on('icestatechange', (iceState: types.IceState) => {
if (iceState === 'disconnected' || iceState === 'closed') {
consola.info('[WebRtc]', '[WebRtcTransport]', `"icestatechange" event [iceState:${iceState}], closing peer`, transport.id)
@@ -239,7 +239,7 @@ export default function (io: SocketServer, router: types.Router) {
}
})
- transport.on('dtlsstatechange', (dtlsState) => {
+ transport.on('dtlsstatechange', (dtlsState: types.DtlsState) => {
if (dtlsState === 'failed' || dtlsState === 'closed') {
consola.warn('WebRtcTransport "dtlsstatechange" event [dtlsState:%s], closing peer', dtlsState)
@@ -364,6 +364,9 @@ export default function (io: SocketServer, router: types.Router) {
return
}
+ if (producer.paused)
+ return
+
await producer.pause()
cb({ ok: true })
@@ -547,7 +550,7 @@ export default function (io: SocketServer, router: types.Router) {
consumerSocket.emit('consumerResumed', { consumerId: consumer.id })
})
- consumer.on('score', (score) => {
+ consumer.on('score', (score: types.ConsumerScore) => {
consumerSocket.emit('consumerScore', { consumerId: consumer.id, score })
})
@@ -555,7 +558,7 @@ export default function (io: SocketServer, router: types.Router) {
await consumerSocket.emitWithAck(
'newConsumer',
{
- peerId: producerSocket.id,
+ socketId: producerSocket.id,
producerId: producer.id,
id: consumer.id,
kind: consumer.kind,