Compare commits
11 Commits
6a54ecd003
...
timo/feat-
| Author | SHA1 | Date | |
|---|---|---|---|
| 2c4951ff9b | |||
| 3c98ee0d47 | |||
| 8d6e2efb53 | |||
| 377c36f846 | |||
| 11581ffad6 | |||
| 9cc21a0107 | |||
| 5fe7b7f788 | |||
| 880b85f75d | |||
| f1b9cea060 | |||
| 6a4685f588 | |||
| 133c5c661b |
@@ -11,6 +11,9 @@
|
|||||||
"vueIndentScriptAndStyle": false,
|
"vueIndentScriptAndStyle": false,
|
||||||
"bracketSameLine": false,
|
"bracketSameLine": false,
|
||||||
"singleAttributePerLine": true,
|
"singleAttributePerLine": true,
|
||||||
"experimentalSortPackageJson": false,
|
"embeddedLanguageFormatting": "auto",
|
||||||
|
"experimentalSortPackageJson": true,
|
||||||
|
"experimentalSortImports": {},
|
||||||
|
"experimentalTailwindcss": {},
|
||||||
"ignorePatterns": []
|
"ignorePatterns": []
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,23 +1,17 @@
|
|||||||
{
|
{
|
||||||
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
"$schema": "./node_modules/oxlint/configuration_schema.json",
|
||||||
"plugins": null,
|
"plugins": [
|
||||||
|
"eslint",
|
||||||
|
"unicorn",
|
||||||
|
"vue",
|
||||||
|
"typescript",
|
||||||
|
"jsdoc",
|
||||||
|
"promise",
|
||||||
|
"vitest"
|
||||||
|
],
|
||||||
"categories": {},
|
"categories": {},
|
||||||
"rules": {},
|
"rules": {},
|
||||||
"settings": {
|
"settings": {
|
||||||
"jsx-a11y": {
|
|
||||||
"polymorphicPropName": null,
|
|
||||||
"components": {},
|
|
||||||
"attributes": {}
|
|
||||||
},
|
|
||||||
"next": {
|
|
||||||
"rootDir": []
|
|
||||||
},
|
|
||||||
"react": {
|
|
||||||
"formComponents": [],
|
|
||||||
"linkComponents": [],
|
|
||||||
"version": null,
|
|
||||||
"componentWrapperFunctions": []
|
|
||||||
},
|
|
||||||
"jsdoc": {
|
"jsdoc": {
|
||||||
"ignorePrivate": false,
|
"ignorePrivate": false,
|
||||||
"ignoreInternal": false,
|
"ignoreInternal": false,
|
||||||
|
|||||||
13
.vscode/settings.json
vendored
@@ -1,9 +1,14 @@
|
|||||||
{
|
{
|
||||||
"oxc.fmt.configPath": ".oxfmtrc.json",
|
|
||||||
"editor.defaultFormatter": "oxc.oxc-vscode",
|
"editor.defaultFormatter": "oxc.oxc-vscode",
|
||||||
"editor.formatOnSave": true,
|
"editor.formatOnSave": true,
|
||||||
"editor.codeActionsOnSave": {
|
// "editor.codeActionsOnSave": {
|
||||||
"source.fixAll.oxc": "always"
|
// "source.fixAll.oxc": "always"
|
||||||
|
// },
|
||||||
|
"typescript.tsdk": "node_modules\\typescript\\lib",
|
||||||
|
"[typescript]": {
|
||||||
|
"editor.defaultFormatter": "oxc.oxc-vscode"
|
||||||
},
|
},
|
||||||
"typescript.tsdk": "node_modules\\typescript\\lib"
|
"[json]": {
|
||||||
|
"editor.defaultFormatter": "oxc.oxc-vscode"
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 336 KiB After Width: | Height: | Size: 336 KiB |
|
Before Width: | Height: | Size: 1.2 MiB After Width: | Height: | Size: 1.2 MiB |
|
Before Width: | Height: | Size: 411 KiB After Width: | Height: | Size: 411 KiB |
@@ -96,7 +96,7 @@ const onCreateCourseGreenSubmit = async (
|
|||||||
BaseResponse<resp.gen.GBVideoCreate>
|
BaseResponse<resp.gen.GBVideoCreate>
|
||||||
>('App.Digital_VideoTask.Create', payload)
|
>('App.Digital_VideoTask.Create', payload)
|
||||||
.then((res) => {
|
.then((res) => {
|
||||||
if (!!res.data.task_id) {
|
if (res.data.task_id) {
|
||||||
toast.add({
|
toast.add({
|
||||||
title: '创建成功',
|
title: '创建成功',
|
||||||
description: '视频已加入生成队列',
|
description: '视频已加入生成队列',
|
||||||
@@ -26,7 +26,7 @@ export const useHistory = defineStore(
|
|||||||
},
|
},
|
||||||
{
|
{
|
||||||
persist: {
|
persist: {
|
||||||
storage: persistedState.localStorage,
|
storage: piniaPluginPersistedstate.localStorage(),
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
@@ -72,8 +72,8 @@ export const useLoginState = defineStore(
|
|||||||
{
|
{
|
||||||
persist: {
|
persist: {
|
||||||
key: 'xsh_assistant_persisted_state',
|
key: 'xsh_assistant_persisted_state',
|
||||||
storage: persistedState.localStorage,
|
storage: piniaPluginPersistedstate.localStorage(),
|
||||||
paths: ['is_logged_in', 'token', 'user'],
|
pick: ['is_logged_in', 'token', 'user'],
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
@@ -32,8 +32,8 @@ export const useTourState = defineStore(
|
|||||||
{
|
{
|
||||||
persist: {
|
persist: {
|
||||||
key: 'xsh_assistant_tour_state',
|
key: 'xsh_assistant_tour_state',
|
||||||
storage: persistedState.localStorage,
|
storage: piniaPluginPersistedstate.localStorage(),
|
||||||
paths: ['tourState'],
|
pick: ['tourState'],
|
||||||
},
|
},
|
||||||
}
|
}
|
||||||
)
|
)
|
||||||
@@ -135,10 +135,10 @@ onMounted(async () => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="relative grid w-full min-h-screen">
|
<div class="relative grid min-h-screen w-full">
|
||||||
<header>
|
<header>
|
||||||
<h1 class="inline-flex flex-col">
|
<h1 class="inline-flex flex-col">
|
||||||
<span class="text-lg text-neutral-600 dark:text-neutral-300 font-bold">
|
<span class="text-lg font-bold text-neutral-600 dark:text-neutral-300">
|
||||||
AIGC 微课视频研创平台
|
AIGC 微课视频研创平台
|
||||||
</span>
|
</span>
|
||||||
<!-- <span class="text-xs text-neutral-600 dark:text-neutral-300">眩生花科技</span> -->
|
<!-- <span class="text-xs text-neutral-600 dark:text-neutral-300">眩生花科技</span> -->
|
||||||
@@ -198,7 +198,7 @@ onMounted(async () => {
|
|||||||
</UBadge>
|
</UBadge>
|
||||||
</p>
|
</p>
|
||||||
<p
|
<p
|
||||||
class="truncate whitespace-nowrap max-w-40 font-medium text-gray-900 dark:text-white"
|
class="max-w-40 truncate whitespace-nowrap font-medium text-gray-900 dark:text-white"
|
||||||
>
|
>
|
||||||
{{ loginState.user?.username }}
|
{{ loginState.user?.username }}
|
||||||
</p>
|
</p>
|
||||||
@@ -208,7 +208,7 @@ onMounted(async () => {
|
|||||||
<span class="truncate">{{ item.label }}</span>
|
<span class="truncate">{{ item.label }}</span>
|
||||||
<UIcon
|
<UIcon
|
||||||
:name="item.icon"
|
:name="item.icon"
|
||||||
class="flex-shrink-0 h-4 w-4 text-gray-400 dark:text-gray-500 ms-auto"
|
class="ms-auto size-4 flex-shrink-0 text-gray-400 dark:text-gray-500"
|
||||||
/>
|
/>
|
||||||
</template>
|
</template>
|
||||||
</UDropdown>
|
</UDropdown>
|
||||||
@@ -230,7 +230,7 @@ onMounted(async () => {
|
|||||||
|
|
||||||
<style>
|
<style>
|
||||||
body {
|
body {
|
||||||
@apply bg-neutral-50 dark:bg-neutral-950 bg-fixed;
|
@apply bg-neutral-50 bg-fixed dark:bg-neutral-950;
|
||||||
/* @apply bg-[url('~/assets/background-pattern.svg')] dark:bg-[url('~/assets/background-pattern-dark.svg')]; */
|
/* @apply bg-[url('~/assets/background-pattern.svg')] dark:bg-[url('~/assets/background-pattern-dark.svg')]; */
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -271,10 +271,10 @@ body {
|
|||||||
|
|
||||||
<style scoped>
|
<style scoped>
|
||||||
header {
|
header {
|
||||||
@apply fixed inset-x-0 h-16 bg-white border-b z-30;
|
@apply fixed inset-x-0 z-30 h-16 border-b bg-white;
|
||||||
@apply dark:bg-neutral-900 dark:border-neutral-800;
|
@apply dark:border-neutral-800 dark:bg-neutral-900;
|
||||||
@apply flex flex-row items-center justify-between px-4;
|
@apply flex flex-row items-center justify-between px-4;
|
||||||
@apply bg-opacity-50 dark:bg-opacity-50 backdrop-blur-3xl backdrop-saturate-150;
|
@apply bg-opacity-50 backdrop-blur-3xl backdrop-saturate-150 dark:bg-opacity-50;
|
||||||
}
|
}
|
||||||
|
|
||||||
main {
|
main {
|
||||||
@@ -282,8 +282,8 @@ main {
|
|||||||
}
|
}
|
||||||
|
|
||||||
footer {
|
footer {
|
||||||
@apply h-16 bg-white border-t z-30;
|
@apply z-30 h-16 border-t bg-white;
|
||||||
@apply dark:bg-neutral-900 dark:border-neutral-800;
|
@apply dark:border-neutral-800 dark:bg-neutral-900;
|
||||||
@apply flex flex-row items-center justify-between px-4;
|
@apply flex flex-row items-center justify-between px-4;
|
||||||
}
|
}
|
||||||
</style>
|
</style>
|
||||||
@@ -58,11 +58,11 @@ onMounted(() => {
|
|||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
<div class="w-full flex relative">
|
<div class="relative flex w-full">
|
||||||
<div
|
<div
|
||||||
class="absolute -translate-x-full md:sticky md:translate-x-0 z-10 flex flex-col h-[calc(100vh-4rem)] bg-neutral-100 dark:bg-neutral-900 p-4 w-full md:w-[300px] border-r border-neutral-200 dark:border-neutral-700 transition-all duration-300 ease-out"
|
class="absolute z-10 flex h-[calc(100vh-4rem)] w-full -translate-x-full flex-col border-r border-neutral-200 bg-neutral-100 p-4 transition-all duration-300 ease-out md:sticky md:w-[300px] md:translate-x-0 dark:border-neutral-700 dark:bg-neutral-900"
|
||||||
>
|
>
|
||||||
<div class="flex flex-col flex-1 overflow-auto overflow-x-hidden">
|
<div class="flex flex-1 flex-col overflow-auto overflow-x-hidden">
|
||||||
<div class="flex flex-col gap-1">
|
<div class="flex flex-col gap-1">
|
||||||
<ClientOnly>
|
<ClientOnly>
|
||||||
<NavItem
|
<NavItem
|
||||||
@@ -107,7 +107,7 @@ onMounted(() => {
|
|||||||
|
|
||||||
.subpage-enter-from,
|
.subpage-enter-from,
|
||||||
.subpage-leave-to {
|
.subpage-leave-to {
|
||||||
@apply opacity-0 translate-x-4;
|
@apply translate-x-4 opacity-0;
|
||||||
}
|
}
|
||||||
|
|
||||||
.loading-screen-leave-active {
|
.loading-screen-leave-active {
|
||||||
@@ -15,7 +15,7 @@ export default defineNuxtConfig({
|
|||||||
'radix-vue/nuxt',
|
'radix-vue/nuxt',
|
||||||
'dayjs-nuxt',
|
'dayjs-nuxt',
|
||||||
'@pinia/nuxt',
|
'@pinia/nuxt',
|
||||||
'@pinia-plugin-persistedstate/nuxt',
|
'pinia-plugin-persistedstate',
|
||||||
'@vite-pwa/nuxt',
|
'@vite-pwa/nuxt',
|
||||||
'@nuxtjs/google-fonts',
|
'@nuxtjs/google-fonts',
|
||||||
'@nuxt/image',
|
'@nuxt/image',
|
||||||
|
|||||||
24
package.json
@@ -1,6 +1,6 @@
|
|||||||
{
|
{
|
||||||
"name": "xsh-assistant",
|
"name": "xsh-assistant-next",
|
||||||
"version": "0.1.6",
|
"version": "2.0.0",
|
||||||
"private": true,
|
"private": true,
|
||||||
"type": "module",
|
"type": "module",
|
||||||
"scripts": {
|
"scripts": {
|
||||||
@@ -12,7 +12,6 @@
|
|||||||
"lint:fix": "oxlint --fix",
|
"lint:fix": "oxlint --fix",
|
||||||
"postinstall": "nuxt prepare"
|
"postinstall": "nuxt prepare"
|
||||||
},
|
},
|
||||||
"packageManager": "pnpm@10.22.0",
|
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"@ffmpeg/ffmpeg": "^0.12.15",
|
"@ffmpeg/ffmpeg": "^0.12.15",
|
||||||
"@ffmpeg/util": "^0.12.2",
|
"@ffmpeg/util": "^0.12.2",
|
||||||
@@ -31,8 +30,9 @@
|
|||||||
"highlight.js": "^11.10.0",
|
"highlight.js": "^11.10.0",
|
||||||
"idb-keyval": "^6.2.1",
|
"idb-keyval": "^6.2.1",
|
||||||
"markdown-it": "^14.1.0",
|
"markdown-it": "^14.1.0",
|
||||||
"nuxt": "^3.12.4",
|
"nuxt": "^4.3.1",
|
||||||
"nuxt-driver.js": "^0.0.11",
|
"nuxt-driver.js": "^0.0.11",
|
||||||
|
"pinia-plugin-persistedstate": "^4.7.1",
|
||||||
"radix-vue": "^1.9.2",
|
"radix-vue": "^1.9.2",
|
||||||
"v-calendar": "^3.1.2",
|
"v-calendar": "^3.1.2",
|
||||||
"vue": "^3.4.34",
|
"vue": "^3.4.34",
|
||||||
@@ -42,22 +42,22 @@
|
|||||||
"devDependencies": {
|
"devDependencies": {
|
||||||
"@nuxt/ui": "^2.20.0",
|
"@nuxt/ui": "^2.20.0",
|
||||||
"@nuxtjs/google-fonts": "^3.2.0",
|
"@nuxtjs/google-fonts": "^3.2.0",
|
||||||
"@pinia-plugin-persistedstate/nuxt": "^1.2.1",
|
"@pinia/nuxt": "^0.11.3",
|
||||||
"@pinia/nuxt": "^0.5.2",
|
|
||||||
"@tailwindcss/typography": "^0.5.13",
|
"@tailwindcss/typography": "^0.5.13",
|
||||||
"@types/markdown-it": "^13.0.9",
|
"@types/markdown-it": "^13.0.9",
|
||||||
"@types/node": "^25.2.2",
|
"@types/node": "^25.2.2",
|
||||||
"@vite-pwa/nuxt": "^0.5.0",
|
"@vite-pwa/nuxt": "^1.1.1",
|
||||||
"@vueuse/core": "^10.11.1",
|
"@vueuse/core": "^14.2.0",
|
||||||
"@vueuse/nuxt": "^10.11.1",
|
"@vueuse/nuxt": "^14.2.0",
|
||||||
"dayjs-nuxt": "^2.1.9",
|
"dayjs-nuxt": "^2.1.11",
|
||||||
"oxfmt": "^0.28.0",
|
"oxfmt": "^0.28.0",
|
||||||
"oxlint": "^1.43.0",
|
"oxlint": "^1.43.0",
|
||||||
"sass": "^1.77.8",
|
"sass": "^1.77.8",
|
||||||
"typescript": "^5.9.3"
|
"typescript": "^5.9.3"
|
||||||
},
|
},
|
||||||
"peerDependencies": {
|
"peerDependencies": {
|
||||||
"dayjs": "^1.11.12",
|
"dayjs": "^1.11.19",
|
||||||
"tailwindcss": "^3.4.7"
|
"tailwindcss": "^3.4.7"
|
||||||
}
|
},
|
||||||
|
"packageManager": "pnpm@10.22.0"
|
||||||
}
|
}
|
||||||
|
|||||||
236
pnpm-lock.yaml
generated
@@ -45,7 +45,7 @@ importers:
|
|||||||
specifier: ^4.1.0
|
specifier: ^4.1.0
|
||||||
version: 4.1.0
|
version: 4.1.0
|
||||||
dayjs:
|
dayjs:
|
||||||
specifier: ^1.11.12
|
specifier: ^1.11.19
|
||||||
version: 1.11.19
|
version: 1.11.19
|
||||||
events:
|
events:
|
||||||
specifier: ^3.3.0
|
specifier: ^3.3.0
|
||||||
@@ -63,11 +63,14 @@ importers:
|
|||||||
specifier: ^14.1.0
|
specifier: ^14.1.0
|
||||||
version: 14.1.0
|
version: 14.1.0
|
||||||
nuxt:
|
nuxt:
|
||||||
specifier: ^3.12.4
|
specifier: ^4.3.1
|
||||||
version: 3.21.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
version: 4.3.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
||||||
nuxt-driver.js:
|
nuxt-driver.js:
|
||||||
specifier: ^0.0.11
|
specifier: ^0.0.11
|
||||||
version: 0.0.11(magicast@0.5.2)
|
version: 0.0.11(magicast@0.5.2)
|
||||||
|
pinia-plugin-persistedstate:
|
||||||
|
specifier: ^4.7.1
|
||||||
|
version: 4.7.1(@nuxt/kit@4.3.1(magicast@0.5.2))(@pinia/nuxt@0.11.3(magicast@0.5.2)(pinia@2.3.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))))(pinia@2.3.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)))
|
||||||
radix-vue:
|
radix-vue:
|
||||||
specifier: ^1.9.2
|
specifier: ^1.9.2
|
||||||
version: 1.9.17(vue@3.5.28(typescript@5.9.3))
|
version: 1.9.17(vue@3.5.28(typescript@5.9.3))
|
||||||
@@ -93,12 +96,9 @@ importers:
|
|||||||
'@nuxtjs/google-fonts':
|
'@nuxtjs/google-fonts':
|
||||||
specifier: ^3.2.0
|
specifier: ^3.2.0
|
||||||
version: 3.2.0(magicast@0.5.2)
|
version: 3.2.0(magicast@0.5.2)
|
||||||
'@pinia-plugin-persistedstate/nuxt':
|
|
||||||
specifier: ^1.2.1
|
|
||||||
version: 1.2.1(@pinia/nuxt@0.5.5(magicast@0.5.2)(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)))(magicast@0.5.2)
|
|
||||||
'@pinia/nuxt':
|
'@pinia/nuxt':
|
||||||
specifier: ^0.5.2
|
specifier: ^0.11.3
|
||||||
version: 0.5.5(magicast@0.5.2)(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
|
version: 0.11.3(magicast@0.5.2)(pinia@2.3.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)))
|
||||||
'@tailwindcss/typography':
|
'@tailwindcss/typography':
|
||||||
specifier: ^0.5.13
|
specifier: ^0.5.13
|
||||||
version: 0.5.19(tailwindcss@3.4.19(yaml@2.8.2))
|
version: 0.5.19(tailwindcss@3.4.19(yaml@2.8.2))
|
||||||
@@ -109,16 +109,16 @@ importers:
|
|||||||
specifier: ^25.2.2
|
specifier: ^25.2.2
|
||||||
version: 25.2.2
|
version: 25.2.2
|
||||||
'@vite-pwa/nuxt':
|
'@vite-pwa/nuxt':
|
||||||
specifier: ^0.5.0
|
specifier: ^1.1.1
|
||||||
version: 0.5.0(magicast@0.5.2)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0)
|
version: 1.1.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0)
|
||||||
'@vueuse/core':
|
'@vueuse/core':
|
||||||
specifier: ^10.11.1
|
specifier: ^14.2.0
|
||||||
version: 10.11.1(vue@3.5.28(typescript@5.9.3))
|
version: 14.2.0(vue@3.5.28(typescript@5.9.3))
|
||||||
'@vueuse/nuxt':
|
'@vueuse/nuxt':
|
||||||
specifier: ^10.11.1
|
specifier: ^14.2.0
|
||||||
version: 10.11.1(magicast@0.5.2)(nuxt@3.21.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
|
version: 14.2.0(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
|
||||||
dayjs-nuxt:
|
dayjs-nuxt:
|
||||||
specifier: ^2.1.9
|
specifier: ^2.1.11
|
||||||
version: 2.1.11(magicast@0.5.2)
|
version: 2.1.11(magicast@0.5.2)
|
||||||
oxfmt:
|
oxfmt:
|
||||||
specifier: ^0.28.0
|
specifier: ^0.28.0
|
||||||
@@ -1074,14 +1074,14 @@ packages:
|
|||||||
resolution: {integrity: sha512-UjBFt72dnpc+83BV3OIbCT0YHLevJtgJCHpxMX0YRKWLDhhbcDdUse87GtsQBrjvOzK7WUNUYLDS/hQLYev5rA==}
|
resolution: {integrity: sha512-UjBFt72dnpc+83BV3OIbCT0YHLevJtgJCHpxMX0YRKWLDhhbcDdUse87GtsQBrjvOzK7WUNUYLDS/hQLYev5rA==}
|
||||||
engines: {node: '>=18.12.0'}
|
engines: {node: '>=18.12.0'}
|
||||||
|
|
||||||
'@nuxt/nitro-server@3.21.1':
|
'@nuxt/nitro-server@4.3.1':
|
||||||
resolution: {integrity: sha512-eWe2RS75HSFQyjdVVK918aBBRMM/cDK5bzWSml07PBY+f9XRXHDf6gD4KqPR4gDDDafYneBPNWayHL+sxb/gDw==}
|
resolution: {integrity: sha512-4aNiM69Re02gI1ywnDND0m6QdVKXhWzDdtvl/16veytdHZj3FSq57ZCwOClNJ7HQkEMqXgS+bi6S2HmJX+et+g==}
|
||||||
engines: {node: ^20.19.0 || >=22.12.0}
|
engines: {node: ^20.19.0 || >=22.12.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
nuxt: ^3.21.1
|
nuxt: ^4.3.1
|
||||||
|
|
||||||
'@nuxt/schema@3.21.1':
|
'@nuxt/schema@4.3.1':
|
||||||
resolution: {integrity: sha512-9cTtB0IFoly+/51yHK5eBooangJuFH9twZJCBPxttxQPwsdG9OgInMuESmGhSVzp8QG4P0lPF7i9ZlgFiQkNgw==}
|
resolution: {integrity: sha512-S+wHJdYDuyk9I43Ej27y5BeWMZgi7R/UVql3b3qtT35d0fbpXW7fUenzhLRCCDC6O10sjguc6fcMcR9sMKvV8g==}
|
||||||
engines: {node: ^14.18.0 || >=16.10.0}
|
engines: {node: ^14.18.0 || >=16.10.0}
|
||||||
|
|
||||||
'@nuxt/telemetry@2.7.0':
|
'@nuxt/telemetry@2.7.0':
|
||||||
@@ -1111,11 +1111,11 @@ packages:
|
|||||||
zod:
|
zod:
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
'@nuxt/vite-builder@3.21.1':
|
'@nuxt/vite-builder@4.3.1':
|
||||||
resolution: {integrity: sha512-clm2/1/sL9W+EiJ4KIseg93sDoWNwCXTx/7raoBD+TCPOLeEFXliyJNpzCnKgp3QgKqxVG12whBWLX56uXD6UQ==}
|
resolution: {integrity: sha512-LndnxPJzDUDbWAB8q5gZZN1mSOLHEyMOoj4T3pTdPydGf31QZdMR0V1fQ1fdRgtgNtWB3WLP0d1ZfaAOITsUpw==}
|
||||||
engines: {node: ^20.19.0 || >=22.12.0}
|
engines: {node: ^20.19.0 || >=22.12.0}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
nuxt: 3.21.1
|
nuxt: 4.3.1
|
||||||
rolldown: ^1.0.0-beta.38
|
rolldown: ^1.0.0-beta.38
|
||||||
vue: ^3.3.4
|
vue: ^3.3.4
|
||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
@@ -1659,14 +1659,10 @@ packages:
|
|||||||
resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==}
|
resolution: {integrity: sha512-tmmZ3lQxAe/k/+rNnXQRawJ4NjxO2hqiOLTHvWchtGZULp4RyFeh6aU4XdOYBFe2KE1oShQTv4AblOs2iOrNnQ==}
|
||||||
engines: {node: '>= 10.0.0'}
|
engines: {node: '>= 10.0.0'}
|
||||||
|
|
||||||
'@pinia-plugin-persistedstate/nuxt@1.2.1':
|
'@pinia/nuxt@0.11.3':
|
||||||
resolution: {integrity: sha512-q8s+4aQW/AjBMyeqLL48/qzBR5lcgnvvf1525ovNuKf6Wl9CsoLjPKh/5X8vNoKGwSow4gP7lVmdYPQRypgjgg==}
|
resolution: {integrity: sha512-7WVNHpWx4qAEzOlnyrRC88kYrwnlR/PrThWT0XI1dSNyUAXu/KBv9oR37uCgYkZroqP5jn8DfzbkNF3BtKvE9w==}
|
||||||
deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
|
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@pinia/nuxt': ^0.5.0
|
pinia: ^3.0.4
|
||||||
|
|
||||||
'@pinia/nuxt@0.5.5':
|
|
||||||
resolution: {integrity: sha512-wjxS7YqIesh4OLK+qE3ZjhdOJ5pYZQ+VlEmZNtTwzQn1Kavei/khovx7mzXVXNA/mvSPXVhb9xBzhyS3XMURtw==}
|
|
||||||
|
|
||||||
'@pkgjs/parseargs@0.11.0':
|
'@pkgjs/parseargs@0.11.0':
|
||||||
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
|
resolution: {integrity: sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==}
|
||||||
@@ -2028,8 +2024,13 @@ packages:
|
|||||||
engines: {node: '>=20'}
|
engines: {node: '>=20'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
'@vite-pwa/nuxt@0.5.0':
|
'@vite-pwa/nuxt@1.1.1':
|
||||||
resolution: {integrity: sha512-5Si0Qpj9FGYmgrX52HJtY1OZKNDXJVmx17yULk0Karb7+6GKXhRcWP3DnFTEG7zkctXuzBli5sXjQaEEbEgy6w==}
|
resolution: {integrity: sha512-8RkdxNJ3NubtwmS96bPVvDclFmysH3VADKWqlaBaUu6PLsoHM3Wq7ThdYBsAT6EpqzWS+iFC2SF6lkJ4xDhKLA==}
|
||||||
|
peerDependencies:
|
||||||
|
'@vite-pwa/assets-generator': ^1.0.0
|
||||||
|
peerDependenciesMeta:
|
||||||
|
'@vite-pwa/assets-generator':
|
||||||
|
optional: true
|
||||||
|
|
||||||
'@vitejs/plugin-vue-jsx@5.1.4':
|
'@vitejs/plugin-vue-jsx@5.1.4':
|
||||||
resolution: {integrity: sha512-70LmoVk9riR7qc4W2CpjsbNMWTPnuZb9dpFKX1emru0yP57nsc9k8nhLA6U93ngQapv5VDIUq2JatNfLbBIkrA==}
|
resolution: {integrity: sha512-70LmoVk9riR7qc4W2CpjsbNMWTPnuZb9dpFKX1emru0yP57nsc9k8nhLA6U93ngQapv5VDIUq2JatNfLbBIkrA==}
|
||||||
@@ -2130,6 +2131,11 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
vue: ^3.5.0
|
vue: ^3.5.0
|
||||||
|
|
||||||
|
'@vueuse/core@14.2.0':
|
||||||
|
resolution: {integrity: sha512-tpjzVl7KCQNVd/qcaCE9XbejL38V6KJAEq/tVXj7mDPtl6JtzmUdnXelSS+ULRkkrDgzYVK7EerQJvd2jR794Q==}
|
||||||
|
peerDependencies:
|
||||||
|
vue: ^3.5.0
|
||||||
|
|
||||||
'@vueuse/integrations@13.9.0':
|
'@vueuse/integrations@13.9.0':
|
||||||
resolution: {integrity: sha512-SDobKBbPIOe0cVL7QxMzGkuUGHvWTdihi9zOrrWaWUgFKe15cwEcwfWmgrcNzjT6kHnNmWuTajPHoIzUjYNYYQ==}
|
resolution: {integrity: sha512-SDobKBbPIOe0cVL7QxMzGkuUGHvWTdihi9zOrrWaWUgFKe15cwEcwfWmgrcNzjT6kHnNmWuTajPHoIzUjYNYYQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
@@ -2183,10 +2189,14 @@ packages:
|
|||||||
'@vueuse/metadata@13.9.0':
|
'@vueuse/metadata@13.9.0':
|
||||||
resolution: {integrity: sha512-1AFRvuiGphfF7yWixZa0KwjYH8ulyjDCC0aFgrGRz8+P4kvDFSdXLVfTk5xAN9wEuD1J6z4/myMoYbnHoX07zg==}
|
resolution: {integrity: sha512-1AFRvuiGphfF7yWixZa0KwjYH8ulyjDCC0aFgrGRz8+P4kvDFSdXLVfTk5xAN9wEuD1J6z4/myMoYbnHoX07zg==}
|
||||||
|
|
||||||
'@vueuse/nuxt@10.11.1':
|
'@vueuse/metadata@14.2.0':
|
||||||
resolution: {integrity: sha512-UiaYSIwOkmUVn8Gl1AqtLWYR12flO+8sEu9X0Y1fNjSR7EWy9jMuiCvOGqwtoeTsqfHrivl0d5HfMzr11GFnMA==}
|
resolution: {integrity: sha512-i3axTGjU8b13FtyR4Keeama+43iD+BwX9C2TmzBVKqjSHArF03hjkp2SBZ1m72Jk2UtrX0aYCugBq2R1fhkuAQ==}
|
||||||
|
|
||||||
|
'@vueuse/nuxt@14.2.0':
|
||||||
|
resolution: {integrity: sha512-MpxTYd7/W0izL6DgMEYUUTYkm1q0aqE0kfMr6oBcj5R0TIrdPJAJIwVaqs5pbSjQUPjNNgQ7mCRvx9RKFUq+VQ==}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
nuxt: ^3.0.0
|
nuxt: ^3.0.0 || ^4.0.0-0
|
||||||
|
vue: ^3.5.0
|
||||||
|
|
||||||
'@vueuse/shared@10.11.1':
|
'@vueuse/shared@10.11.1':
|
||||||
resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
|
resolution: {integrity: sha512-LHpC8711VFZlDaYUXEBbFBCQ7GS3dVU9mjOhhMhXP6txTV4EhYQg/KGnQuvt/sPAtoUKq7VVUnL6mVtFoL42sA==}
|
||||||
@@ -2196,6 +2206,11 @@ packages:
|
|||||||
peerDependencies:
|
peerDependencies:
|
||||||
vue: ^3.5.0
|
vue: ^3.5.0
|
||||||
|
|
||||||
|
'@vueuse/shared@14.2.0':
|
||||||
|
resolution: {integrity: sha512-Z0bmluZTlAXgUcJ4uAFaML16JcD8V0QG00Db3quR642I99JXIDRa2MI2LGxiLVhcBjVnL1jOzIvT5TT2lqJlkA==}
|
||||||
|
peerDependencies:
|
||||||
|
vue: ^3.5.0
|
||||||
|
|
||||||
'@webav/av-cliper@1.2.8':
|
'@webav/av-cliper@1.2.8':
|
||||||
resolution: {integrity: sha512-lxCXgP5AJsl+6xRo1puU5lTv7rAsxX9StQVK8xYdbg02p9FswCt76iTPqNxmlJ0ZfV1g+lmyNufLXu/qBAnJnA==}
|
resolution: {integrity: sha512-lxCXgP5AJsl+6xRo1puU5lTv7rAsxX9StQVK8xYdbg02p9FswCt76iTPqNxmlJ0ZfV1g+lmyNufLXu/qBAnJnA==}
|
||||||
|
|
||||||
@@ -2917,10 +2932,6 @@ packages:
|
|||||||
end-of-stream@1.4.5:
|
end-of-stream@1.4.5:
|
||||||
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
|
resolution: {integrity: sha512-ooEGc6HP26xXq/N+GCGOT0JKCLDGrq2bQUZrQ7gyrJiZANJ/8YDTxTpQBXGMn+WbIQXNVpyWymm7KYVICQnyOg==}
|
||||||
|
|
||||||
enhanced-resolve@5.19.0:
|
|
||||||
resolution: {integrity: sha512-phv3E1Xl4tQOShqSte26C7Fl84EwUdZsyOuSSk9qtAGyyQs2s3jJzComh+Abf4g187lUUAvH+H26omrqia2aGg==}
|
|
||||||
engines: {node: '>=10.13.0'}
|
|
||||||
|
|
||||||
entities@4.5.0:
|
entities@4.5.0:
|
||||||
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
|
resolution: {integrity: sha512-V0hjH4dGPh9Ao5p0MoRY6BVqtwCjhz6vI5LT8AJ55H+4g9/4vbHx1I54fS0XuclLhDHArPQCiMjDxjaL8fPxhw==}
|
||||||
engines: {node: '>=0.12'}
|
engines: {node: '>=0.12'}
|
||||||
@@ -3017,9 +3028,6 @@ packages:
|
|||||||
exsolve@1.0.8:
|
exsolve@1.0.8:
|
||||||
resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
|
resolution: {integrity: sha512-LmDxfWXwcTArk8fUEnOfSZpHOJ6zOMUJKOtFLFqJLoKJetuQG874Uc7/Kki7zFLzYybmZhp1M7+98pfMqeX8yA==}
|
||||||
|
|
||||||
externality@1.0.2:
|
|
||||||
resolution: {integrity: sha512-LyExtJWKxtgVzmgtEHyQtLFpw1KFhQphF9nTG8TpAIVkiI/xQ3FJh75tRFLYl4hkn7BNIIdLJInuDAavX35pMw==}
|
|
||||||
|
|
||||||
fast-deep-equal@3.1.3:
|
fast-deep-equal@3.1.3:
|
||||||
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
resolution: {integrity: sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==}
|
||||||
|
|
||||||
@@ -3645,10 +3653,6 @@ packages:
|
|||||||
resolution: {integrity: sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==}
|
resolution: {integrity: sha512-I8oW2+QL5KJo8zXNWX046M134WchxsXC7SawLPvRQpogCbkyQIaFxPE89A2HiwR7vAK2Dm2ERBAmyjTYGYEpBg==}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
local-pkg@0.5.1:
|
|
||||||
resolution: {integrity: sha512-9rrA30MRRP3gBD3HTGnC6cDFpaE1kVDWxWgqWJUN0RvDNAo+Nz/9GxB+nHOH0ifbVFy0hSA1V6vFDvnx54lTEQ==}
|
|
||||||
engines: {node: '>=14'}
|
|
||||||
|
|
||||||
local-pkg@1.1.2:
|
local-pkg@1.1.2:
|
||||||
resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==}
|
resolution: {integrity: sha512-arhlxbFRmoQHl33a0Zkle/YWlmNwoyt6QNZEIJcqNbdrsix5Lvc4HyyI3EnwxTYlZYc32EbYrQ8SzEZ7dqgg9A==}
|
||||||
engines: {node: '>=14'}
|
engines: {node: '>=14'}
|
||||||
@@ -3912,13 +3916,13 @@ packages:
|
|||||||
nuxt-driver.js@0.0.11:
|
nuxt-driver.js@0.0.11:
|
||||||
resolution: {integrity: sha512-WzcNjEk7VGyMrt6vKAQGXiaf/sHp7cfGYtZ1O6fxow3DYWJ+a2NHsLE9ejumSSH753JKzmLNpJRrX0YYFCnl9g==}
|
resolution: {integrity: sha512-WzcNjEk7VGyMrt6vKAQGXiaf/sHp7cfGYtZ1O6fxow3DYWJ+a2NHsLE9ejumSSH753JKzmLNpJRrX0YYFCnl9g==}
|
||||||
|
|
||||||
nuxt@3.21.1:
|
nuxt@4.3.1:
|
||||||
resolution: {integrity: sha512-lrrQY2+nN7BhoaBOgWMks0xtKz4qjpczVmM0Uk7tCVQDQTs14eR/YDkjhMM1vCLfzlspW0lBHmJFcGvNUXiT7g==}
|
resolution: {integrity: sha512-bl+0rFcT5Ax16aiWFBFPyWcsTob19NTZaDL5P6t0MQdK63AtgS6fN6fwvwdbXtnTk6/YdCzlmuLzXhSM22h0OA==}
|
||||||
engines: {node: ^20.19.0 || >=22.12.0}
|
engines: {node: ^20.19.0 || >=22.12.0}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@parcel/watcher': ^2.1.0
|
'@parcel/watcher': ^2.1.0
|
||||||
'@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
|
'@types/node': '>=18.12.0'
|
||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
'@parcel/watcher':
|
'@parcel/watcher':
|
||||||
optional: true
|
optional: true
|
||||||
@@ -4878,10 +4882,6 @@ packages:
|
|||||||
engines: {node: '>=14.0.0'}
|
engines: {node: '>=14.0.0'}
|
||||||
hasBin: true
|
hasBin: true
|
||||||
|
|
||||||
tapable@2.3.0:
|
|
||||||
resolution: {integrity: sha512-g9ljZiwki/LfxmQADO3dEY1CbpmXT5Hm2fJ+QaGKwSXUylMybePR7/67YW7jOrrvjEgL1Fmz5kzyAjWVWLlucg==}
|
|
||||||
engines: {node: '>=6'}
|
|
||||||
|
|
||||||
tar-fs@2.1.4:
|
tar-fs@2.1.4:
|
||||||
resolution: {integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==}
|
resolution: {integrity: sha512-mDAjwmZdh7LTT6pNleZ05Yt65HC3E+NiQzl672vQG38jIrehtJk/J3mNwIg+vShQPcLF/LV7CMnDW6vjj6sfYQ==}
|
||||||
|
|
||||||
@@ -5264,14 +5264,14 @@ packages:
|
|||||||
'@nuxt/kit':
|
'@nuxt/kit':
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
vite-plugin-pwa@0.21.2:
|
vite-plugin-pwa@1.2.0:
|
||||||
resolution: {integrity: sha512-vFhH6Waw8itNu37hWUJxL50q+CBbNcMVzsKaYHQVrfxTt3ihk3PeLO22SbiP1UNWzcEPaTQv+YVxe4G0KOjAkg==}
|
resolution: {integrity: sha512-a2xld+SJshT9Lgcv8Ji4+srFJL4k/1bVbd1x06JIkvecpQkwkvCncD1+gSzcdm3s+owWLpMJerG3aN5jupJEVw==}
|
||||||
engines: {node: '>=16.0.0'}
|
engines: {node: '>=16.0.0'}
|
||||||
peerDependencies:
|
peerDependencies:
|
||||||
'@vite-pwa/assets-generator': ^0.2.6
|
'@vite-pwa/assets-generator': ^1.0.0
|
||||||
vite: ^3.1.0 || ^4.0.0 || ^5.0.0 || ^6.0.0
|
vite: ^3.1.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0
|
||||||
workbox-build: ^7.3.0
|
workbox-build: ^7.4.0
|
||||||
workbox-window: ^7.3.0
|
workbox-window: ^7.4.0
|
||||||
peerDependenciesMeta:
|
peerDependenciesMeta:
|
||||||
'@vite-pwa/assets-generator':
|
'@vite-pwa/assets-generator':
|
||||||
optional: true
|
optional: true
|
||||||
@@ -6543,7 +6543,7 @@ snapshots:
|
|||||||
'@nodelib/fs.scandir': 2.1.5
|
'@nodelib/fs.scandir': 2.1.5
|
||||||
fastq: 1.20.1
|
fastq: 1.20.1
|
||||||
|
|
||||||
'@nuxt/cli@3.33.1(@nuxt/schema@3.21.1)(cac@6.7.14)(magicast@0.5.2)':
|
'@nuxt/cli@3.33.1(@nuxt/schema@4.3.1)(cac@6.7.14)(magicast@0.5.2)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@bomb.sh/tab': 0.0.12(cac@6.7.14)(citty@0.2.0)
|
'@bomb.sh/tab': 0.0.12(cac@6.7.14)(citty@0.2.0)
|
||||||
'@clack/prompts': 1.0.0
|
'@clack/prompts': 1.0.0
|
||||||
@@ -6574,7 +6574,7 @@ snapshots:
|
|||||||
ufo: 1.6.3
|
ufo: 1.6.3
|
||||||
youch: 4.1.0-beta.13
|
youch: 4.1.0-beta.13
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@nuxt/schema': 3.21.1
|
'@nuxt/schema': 4.3.1
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- cac
|
- cac
|
||||||
- commander
|
- commander
|
||||||
@@ -6763,10 +6763,10 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- magicast
|
- magicast
|
||||||
|
|
||||||
'@nuxt/nitro-server@3.21.1(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(nuxt@3.21.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)':
|
'@nuxt/nitro-server@4.3.1(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@nuxt/devalue': 2.0.2
|
'@nuxt/devalue': 2.0.2
|
||||||
'@nuxt/kit': 3.21.1(magicast@0.5.2)
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
||||||
'@unhead/vue': 2.1.4(vue@3.5.28(typescript@5.9.3))
|
'@unhead/vue': 2.1.4(vue@3.5.28(typescript@5.9.3))
|
||||||
'@vue/shared': 3.5.28
|
'@vue/shared': 3.5.28
|
||||||
consola: 3.4.2
|
consola: 3.4.2
|
||||||
@@ -6781,7 +6781,7 @@ snapshots:
|
|||||||
klona: 2.0.6
|
klona: 2.0.6
|
||||||
mocked-exports: 0.1.1
|
mocked-exports: 0.1.1
|
||||||
nitropack: 2.13.1(idb-keyval@6.2.2)
|
nitropack: 2.13.1(idb-keyval@6.2.2)
|
||||||
nuxt: 3.21.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
||||||
ohash: 2.0.11
|
ohash: 2.0.11
|
||||||
pathe: 2.0.3
|
pathe: 2.0.3
|
||||||
pkg-types: 2.3.0
|
pkg-types: 2.3.0
|
||||||
@@ -6828,7 +6828,7 @@ snapshots:
|
|||||||
- uploadthing
|
- uploadthing
|
||||||
- xml2js
|
- xml2js
|
||||||
|
|
||||||
'@nuxt/schema@3.21.1':
|
'@nuxt/schema@4.3.1':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vue/shared': 3.5.28
|
'@vue/shared': 3.5.28
|
||||||
defu: 6.1.4
|
defu: 6.1.4
|
||||||
@@ -6836,9 +6836,9 @@ snapshots:
|
|||||||
pkg-types: 2.3.0
|
pkg-types: 2.3.0
|
||||||
std-env: 3.10.0
|
std-env: 3.10.0
|
||||||
|
|
||||||
'@nuxt/telemetry@2.7.0(@nuxt/kit@3.21.1(magicast@0.5.2))':
|
'@nuxt/telemetry@2.7.0(@nuxt/kit@4.3.1(magicast@0.5.2))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@nuxt/kit': 3.21.1(magicast@0.5.2)
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
||||||
citty: 0.2.0
|
citty: 0.2.0
|
||||||
consola: 3.4.2
|
consola: 3.4.2
|
||||||
ofetch: 2.0.0-alpha.3
|
ofetch: 2.0.0-alpha.3
|
||||||
@@ -6891,9 +6891,9 @@ snapshots:
|
|||||||
- vue
|
- vue
|
||||||
- yaml
|
- yaml
|
||||||
|
|
||||||
'@nuxt/vite-builder@3.21.1(@types/node@25.2.2)(magicast@0.5.2)(nuxt@3.21.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))(yaml@2.8.2)':
|
'@nuxt/vite-builder@4.3.1(@types/node@25.2.2)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))(yaml@2.8.2)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@nuxt/kit': 3.21.1(magicast@0.5.2)
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
||||||
'@rollup/plugin-replace': 6.0.3(rollup@4.57.1)
|
'@rollup/plugin-replace': 6.0.3(rollup@4.57.1)
|
||||||
'@vitejs/plugin-vue': 6.0.4(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
|
'@vitejs/plugin-vue': 6.0.4(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
|
||||||
'@vitejs/plugin-vue-jsx': 5.1.4(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
|
'@vitejs/plugin-vue-jsx': 5.1.4(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
|
||||||
@@ -6904,17 +6904,14 @@ snapshots:
|
|||||||
esbuild: 0.27.3
|
esbuild: 0.27.3
|
||||||
escape-string-regexp: 5.0.0
|
escape-string-regexp: 5.0.0
|
||||||
exsolve: 1.0.8
|
exsolve: 1.0.8
|
||||||
externality: 1.0.2
|
|
||||||
get-port-please: 3.2.0
|
get-port-please: 3.2.0
|
||||||
jiti: 2.6.1
|
jiti: 2.6.1
|
||||||
knitwork: 1.3.0
|
knitwork: 1.3.0
|
||||||
magic-string: 0.30.21
|
magic-string: 0.30.21
|
||||||
mlly: 1.8.0
|
mlly: 1.8.0
|
||||||
mocked-exports: 0.1.1
|
mocked-exports: 0.1.1
|
||||||
nuxt: 3.21.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
||||||
ohash: 2.0.11
|
|
||||||
pathe: 2.0.3
|
pathe: 2.0.3
|
||||||
perfect-debounce: 2.1.0
|
|
||||||
pkg-types: 2.3.0
|
pkg-types: 2.3.0
|
||||||
postcss: 8.5.6
|
postcss: 8.5.6
|
||||||
rollup-plugin-visualizer: 6.0.5(rollup@4.57.1)
|
rollup-plugin-visualizer: 6.0.5(rollup@4.57.1)
|
||||||
@@ -7294,25 +7291,12 @@ snapshots:
|
|||||||
'@parcel/watcher-win32-ia32': 2.5.6
|
'@parcel/watcher-win32-ia32': 2.5.6
|
||||||
'@parcel/watcher-win32-x64': 2.5.6
|
'@parcel/watcher-win32-x64': 2.5.6
|
||||||
|
|
||||||
'@pinia-plugin-persistedstate/nuxt@1.2.1(@pinia/nuxt@0.5.5(magicast@0.5.2)(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)))(magicast@0.5.2)':
|
'@pinia/nuxt@0.11.3(magicast@0.5.2)(pinia@2.3.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@nuxt/kit': 3.21.1(magicast@0.5.2)
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
||||||
'@pinia/nuxt': 0.5.5(magicast@0.5.2)(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
|
|
||||||
defu: 6.1.4
|
|
||||||
pinia-plugin-persistedstate: 4.7.1(@nuxt/kit@3.21.1(magicast@0.5.2))(@pinia/nuxt@0.5.5(magicast@0.5.2)(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)))
|
|
||||||
transitivePeerDependencies:
|
|
||||||
- magicast
|
|
||||||
- pinia
|
|
||||||
|
|
||||||
'@pinia/nuxt@0.5.5(magicast@0.5.2)(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))':
|
|
||||||
dependencies:
|
|
||||||
'@nuxt/kit': 3.21.1(magicast@0.5.2)
|
|
||||||
pinia: 2.3.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
|
pinia: 2.3.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@vue/composition-api'
|
|
||||||
- magicast
|
- magicast
|
||||||
- typescript
|
|
||||||
- vue
|
|
||||||
|
|
||||||
'@pkgjs/parseargs@0.11.0':
|
'@pkgjs/parseargs@0.11.0':
|
||||||
optional: true
|
optional: true
|
||||||
@@ -7633,14 +7617,13 @@ snapshots:
|
|||||||
- rollup
|
- rollup
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
'@vite-pwa/nuxt@0.5.0(magicast@0.5.2)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0)':
|
'@vite-pwa/nuxt@1.1.1(magicast@0.5.2)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0)':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@nuxt/kit': 3.21.1(magicast@0.5.2)
|
'@nuxt/kit': 3.21.1(magicast@0.5.2)
|
||||||
pathe: 1.1.2
|
pathe: 1.1.2
|
||||||
ufo: 1.6.3
|
ufo: 1.6.3
|
||||||
vite-plugin-pwa: 0.21.2(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0)
|
vite-plugin-pwa: 1.2.0(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@vite-pwa/assets-generator'
|
|
||||||
- magicast
|
- magicast
|
||||||
- supports-color
|
- supports-color
|
||||||
- vite
|
- vite
|
||||||
@@ -7819,6 +7802,13 @@ snapshots:
|
|||||||
'@vueuse/shared': 13.9.0(vue@3.5.28(typescript@5.9.3))
|
'@vueuse/shared': 13.9.0(vue@3.5.28(typescript@5.9.3))
|
||||||
vue: 3.5.28(typescript@5.9.3)
|
vue: 3.5.28(typescript@5.9.3)
|
||||||
|
|
||||||
|
'@vueuse/core@14.2.0(vue@3.5.28(typescript@5.9.3))':
|
||||||
|
dependencies:
|
||||||
|
'@types/web-bluetooth': 0.0.21
|
||||||
|
'@vueuse/metadata': 14.2.0
|
||||||
|
'@vueuse/shared': 14.2.0(vue@3.5.28(typescript@5.9.3))
|
||||||
|
vue: 3.5.28(typescript@5.9.3)
|
||||||
|
|
||||||
'@vueuse/integrations@13.9.0(fuse.js@7.1.0)(idb-keyval@6.2.2)(vue@3.5.28(typescript@5.9.3))':
|
'@vueuse/integrations@13.9.0(fuse.js@7.1.0)(idb-keyval@6.2.2)(vue@3.5.28(typescript@5.9.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@vueuse/core': 13.9.0(vue@3.5.28(typescript@5.9.3))
|
'@vueuse/core': 13.9.0(vue@3.5.28(typescript@5.9.3))
|
||||||
@@ -7837,18 +7827,18 @@ snapshots:
|
|||||||
|
|
||||||
'@vueuse/metadata@13.9.0': {}
|
'@vueuse/metadata@13.9.0': {}
|
||||||
|
|
||||||
'@vueuse/nuxt@10.11.1(magicast@0.5.2)(nuxt@3.21.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))':
|
'@vueuse/metadata@14.2.0': {}
|
||||||
|
|
||||||
|
'@vueuse/nuxt@14.2.0(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@nuxt/kit': 3.21.1(magicast@0.5.2)
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
||||||
'@vueuse/core': 10.11.1(vue@3.5.28(typescript@5.9.3))
|
'@vueuse/core': 14.2.0(vue@3.5.28(typescript@5.9.3))
|
||||||
'@vueuse/metadata': 10.11.1
|
'@vueuse/metadata': 14.2.0
|
||||||
local-pkg: 0.5.1
|
local-pkg: 1.1.2
|
||||||
nuxt: 3.21.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
nuxt: 4.3.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2)
|
||||||
vue-demi: 0.14.10(vue@3.5.28(typescript@5.9.3))
|
vue: 3.5.28(typescript@5.9.3)
|
||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- '@vue/composition-api'
|
|
||||||
- magicast
|
- magicast
|
||||||
- vue
|
|
||||||
|
|
||||||
'@vueuse/shared@10.11.1(vue@3.5.28(typescript@5.9.3))':
|
'@vueuse/shared@10.11.1(vue@3.5.28(typescript@5.9.3))':
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -7861,6 +7851,10 @@ snapshots:
|
|||||||
dependencies:
|
dependencies:
|
||||||
vue: 3.5.28(typescript@5.9.3)
|
vue: 3.5.28(typescript@5.9.3)
|
||||||
|
|
||||||
|
'@vueuse/shared@14.2.0(vue@3.5.28(typescript@5.9.3))':
|
||||||
|
dependencies:
|
||||||
|
vue: 3.5.28(typescript@5.9.3)
|
||||||
|
|
||||||
'@webav/av-cliper@1.2.8':
|
'@webav/av-cliper@1.2.8':
|
||||||
dependencies:
|
dependencies:
|
||||||
'@webav/internal-utils': 1.2.8
|
'@webav/internal-utils': 1.2.8
|
||||||
@@ -8581,11 +8575,6 @@ snapshots:
|
|||||||
once: 1.4.0
|
once: 1.4.0
|
||||||
optional: true
|
optional: true
|
||||||
|
|
||||||
enhanced-resolve@5.19.0:
|
|
||||||
dependencies:
|
|
||||||
graceful-fs: 4.2.11
|
|
||||||
tapable: 2.3.0
|
|
||||||
|
|
||||||
entities@4.5.0: {}
|
entities@4.5.0: {}
|
||||||
|
|
||||||
entities@7.0.1: {}
|
entities@7.0.1: {}
|
||||||
@@ -8748,13 +8737,6 @@ snapshots:
|
|||||||
|
|
||||||
exsolve@1.0.8: {}
|
exsolve@1.0.8: {}
|
||||||
|
|
||||||
externality@1.0.2:
|
|
||||||
dependencies:
|
|
||||||
enhanced-resolve: 5.19.0
|
|
||||||
mlly: 1.8.0
|
|
||||||
pathe: 1.1.2
|
|
||||||
ufo: 1.6.3
|
|
||||||
|
|
||||||
fast-deep-equal@3.1.3: {}
|
fast-deep-equal@3.1.3: {}
|
||||||
|
|
||||||
fast-fifo@1.3.2: {}
|
fast-fifo@1.3.2: {}
|
||||||
@@ -9462,11 +9444,6 @@ snapshots:
|
|||||||
untun: 0.1.3
|
untun: 0.1.3
|
||||||
uqr: 0.1.2
|
uqr: 0.1.2
|
||||||
|
|
||||||
local-pkg@0.5.1:
|
|
||||||
dependencies:
|
|
||||||
mlly: 1.8.0
|
|
||||||
pkg-types: 1.3.1
|
|
||||||
|
|
||||||
local-pkg@1.1.2:
|
local-pkg@1.1.2:
|
||||||
dependencies:
|
dependencies:
|
||||||
mlly: 1.8.0
|
mlly: 1.8.0
|
||||||
@@ -9791,16 +9768,16 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- magicast
|
- magicast
|
||||||
|
|
||||||
nuxt@3.21.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2):
|
nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2):
|
||||||
dependencies:
|
dependencies:
|
||||||
'@dxup/nuxt': 0.3.2(magicast@0.5.2)
|
'@dxup/nuxt': 0.3.2(magicast@0.5.2)
|
||||||
'@nuxt/cli': 3.33.1(@nuxt/schema@3.21.1)(cac@6.7.14)(magicast@0.5.2)
|
'@nuxt/cli': 3.33.1(@nuxt/schema@4.3.1)(cac@6.7.14)(magicast@0.5.2)
|
||||||
'@nuxt/devtools': 3.1.1(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
|
'@nuxt/devtools': 3.1.1(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
|
||||||
'@nuxt/kit': 3.21.1(magicast@0.5.2)
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
||||||
'@nuxt/nitro-server': 3.21.1(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(nuxt@3.21.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)
|
'@nuxt/nitro-server': 4.3.1(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(typescript@5.9.3)
|
||||||
'@nuxt/schema': 3.21.1
|
'@nuxt/schema': 4.3.1
|
||||||
'@nuxt/telemetry': 2.7.0(@nuxt/kit@3.21.1(magicast@0.5.2))
|
'@nuxt/telemetry': 2.7.0(@nuxt/kit@4.3.1(magicast@0.5.2))
|
||||||
'@nuxt/vite-builder': 3.21.1(@types/node@25.2.2)(magicast@0.5.2)(nuxt@3.21.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))(yaml@2.8.2)
|
'@nuxt/vite-builder': 4.3.1(@types/node@25.2.2)(magicast@0.5.2)(nuxt@4.3.1(@parcel/watcher@2.5.6)(@types/node@25.2.2)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(idb-keyval@6.2.2)(ioredis@5.9.2)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(oxlint@1.43.0)(rollup@4.57.1)(sass@1.97.3)(terser@5.46.0)(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))(yaml@2.8.2)
|
||||||
'@unhead/vue': 2.1.4(vue@3.5.28(typescript@5.9.3))
|
'@unhead/vue': 2.1.4(vue@3.5.28(typescript@5.9.3))
|
||||||
'@vue/shared': 3.5.28
|
'@vue/shared': 3.5.28
|
||||||
c12: 3.3.3(magicast@0.5.2)
|
c12: 3.3.3(magicast@0.5.2)
|
||||||
@@ -10133,12 +10110,13 @@ snapshots:
|
|||||||
|
|
||||||
pify@2.3.0: {}
|
pify@2.3.0: {}
|
||||||
|
|
||||||
pinia-plugin-persistedstate@4.7.1(@nuxt/kit@3.21.1(magicast@0.5.2))(@pinia/nuxt@0.5.5(magicast@0.5.2)(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))):
|
pinia-plugin-persistedstate@4.7.1(@nuxt/kit@4.3.1(magicast@0.5.2))(@pinia/nuxt@0.11.3(magicast@0.5.2)(pinia@2.3.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))))(pinia@2.3.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))):
|
||||||
dependencies:
|
dependencies:
|
||||||
defu: 6.1.4
|
defu: 6.1.4
|
||||||
optionalDependencies:
|
optionalDependencies:
|
||||||
'@nuxt/kit': 3.21.1(magicast@0.5.2)
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
||||||
'@pinia/nuxt': 0.5.5(magicast@0.5.2)(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
|
'@pinia/nuxt': 0.11.3(magicast@0.5.2)(pinia@2.3.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)))
|
||||||
|
pinia: 2.3.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
|
||||||
|
|
||||||
pinia@2.3.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)):
|
pinia@2.3.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)):
|
||||||
dependencies:
|
dependencies:
|
||||||
@@ -11053,8 +11031,6 @@ snapshots:
|
|||||||
- tsx
|
- tsx
|
||||||
- yaml
|
- yaml
|
||||||
|
|
||||||
tapable@2.3.0: {}
|
|
||||||
|
|
||||||
tar-fs@2.1.4:
|
tar-fs@2.1.4:
|
||||||
dependencies:
|
dependencies:
|
||||||
chownr: 1.1.4
|
chownr: 1.1.4
|
||||||
@@ -11465,7 +11441,7 @@ snapshots:
|
|||||||
transitivePeerDependencies:
|
transitivePeerDependencies:
|
||||||
- supports-color
|
- supports-color
|
||||||
|
|
||||||
vite-plugin-pwa@0.21.2(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0):
|
vite-plugin-pwa@1.2.0(vite@7.3.1(@types/node@25.2.2)(jiti@2.6.1)(sass@1.97.3)(terser@5.46.0)(yaml@2.8.2))(workbox-build@7.4.0)(workbox-window@7.4.0):
|
||||||
dependencies:
|
dependencies:
|
||||||
debug: 4.4.3
|
debug: 4.4.3
|
||||||
pretty-bytes: 6.1.1
|
pretty-bytes: 6.1.1
|
||||||
|
|||||||
@@ -1,13 +1,18 @@
|
|||||||
{
|
{
|
||||||
// https://nuxt.com/docs/guide/concepts/typescript
|
// https://nuxt.com/docs/guide/concepts/typescript
|
||||||
"extends": "./.nuxt/tsconfig.json",
|
"files": [],
|
||||||
"compilerOptions": {
|
|
||||||
"allowSyntheticDefaultImports": true,
|
|
||||||
"esModuleInterop": true
|
|
||||||
},
|
|
||||||
"references": [
|
"references": [
|
||||||
{
|
{
|
||||||
"path": "./tsconfig.node.json"
|
"path": "./.nuxt/tsconfig.app.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "./.nuxt/tsconfig.server.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "./.nuxt/tsconfig.shared.json"
|
||||||
|
},
|
||||||
|
{
|
||||||
|
"path": "./.nuxt/tsconfig.node.json"
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -1,11 +0,0 @@
|
|||||||
{
|
|
||||||
"compilerOptions": {
|
|
||||||
"composite": true,
|
|
||||||
"skipLibCheck": true,
|
|
||||||
"module": "ESNext",
|
|
||||||
"moduleResolution": "bundler",
|
|
||||||
"allowSyntheticDefaultImports": true,
|
|
||||||
"esModuleInterop": true,
|
|
||||||
"strict": true
|
|
||||||
}
|
|
||||||
}
|
|
||||||