create-nuxt-base 2.2.5 → 2.2.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/nuxt-base-template/.env.example +9 -8
- package/nuxt-base-template/README.md +10 -9
- package/nuxt-base-template/app/pages/auth/login.vue +2 -2
- package/nuxt-base-template/app/pages/auth/register.vue +16 -0
- package/nuxt-base-template/app/pages/auth/setup.vue +133 -0
- package/nuxt-base-template/nuxt.config.ts +19 -15
- package/nuxt-base-template/openapi-ts.config.ts +1 -1
- package/nuxt-base-template/package.json +1 -1
- package/nuxt-base-template/pnpm-lock.yaml +16 -172
- package/nuxt-base-template/server/api/iam/[...path].ts +2 -1
- package/package.json +2 -2
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
1
|
+
NUXT_PUBLIC_SITE_URL=http://localhost:3001
|
|
2
|
+
NUXT_PUBLIC_APP_ENV=development
|
|
3
3
|
NODE_ENV=development
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
NUXT_API_URL=http://localhost:3000
|
|
5
|
+
NUXT_PUBLIC_API_URL=http://localhost:3000
|
|
6
|
+
NUXT_PUBLIC_WEB_PUSH_KEY=
|
|
7
|
+
NUXT_PUBLIC_STORAGE_PREFIX=base-dev
|
|
7
8
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
9
|
+
NUXT_LINEAR_API_KEY=
|
|
10
|
+
NUXT_LINEAR_TEAM_NAME=
|
|
11
|
+
NUXT_LINEAR_PROJECT_NAME=
|
|
@@ -149,21 +149,22 @@ Create a `.env` file with the following variables:
|
|
|
149
149
|
|
|
150
150
|
```env
|
|
151
151
|
# Required
|
|
152
|
-
|
|
153
|
-
|
|
154
|
-
|
|
152
|
+
NUXT_PUBLIC_SITE_URL=http://localhost:3001
|
|
153
|
+
NUXT_API_URL=http://localhost:3000
|
|
154
|
+
NUXT_PUBLIC_API_URL=http://localhost:3000
|
|
155
|
+
NUXT_PUBLIC_APP_ENV=development
|
|
155
156
|
NODE_ENV=development
|
|
156
157
|
```
|
|
157
158
|
|
|
158
159
|
Optional variables:
|
|
159
160
|
|
|
160
161
|
```env
|
|
161
|
-
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
162
|
+
NUXT_PUBLIC_WEB_PUSH_KEY= # Web push notifications
|
|
163
|
+
NUXT_LINEAR_API_KEY= # Bug reporting
|
|
164
|
+
NUXT_LINEAR_TEAM_NAME= # Bug reporting
|
|
165
|
+
NUXT_LINEAR_PROJECT_NAME= # Bug reporting
|
|
166
|
+
NUXT_API_SCHEMA=../api/schema.gql # OpenAPI schema path
|
|
167
|
+
NUXT_PUBLIC_STORAGE_PREFIX=base-dev # Local storage prefix
|
|
167
168
|
```
|
|
168
169
|
|
|
169
170
|
## Project Structure
|
|
@@ -30,7 +30,7 @@ interface SignInResponse {
|
|
|
30
30
|
// Composables
|
|
31
31
|
// ============================================================================
|
|
32
32
|
const toast = useToast();
|
|
33
|
-
const { signIn, setUser, validateSession, authenticateWithPasskey } = useLtAuth();
|
|
33
|
+
const { signIn, setUser, validateSession, authenticateWithPasskey, features } = useLtAuth();
|
|
34
34
|
const { translateError } = useLtErrorTranslation();
|
|
35
35
|
|
|
36
36
|
// ============================================================================
|
|
@@ -214,7 +214,7 @@ async function onSubmit(payload: FormSubmitEvent<Schema>): Promise<void> {
|
|
|
214
214
|
|
|
215
215
|
<UButton block color="neutral" variant="outline" icon="i-lucide-key" :loading="passkeyLoading" @click="onPasskeyLogin"> Mit Passkey anmelden </UButton>
|
|
216
216
|
|
|
217
|
-
<p class="text-center text-sm text-muted">
|
|
217
|
+
<p v-if="features.signUpEnabled !== false" class="text-center text-sm text-muted">
|
|
218
218
|
Noch kein Konto?
|
|
219
219
|
<ULink to="/auth/register" class="text-primary font-medium">Registrieren</ULink>
|
|
220
220
|
</p>
|
|
@@ -43,6 +43,22 @@ const loading = ref<boolean>(false);
|
|
|
43
43
|
const showPasskeyPrompt = ref<boolean>(false);
|
|
44
44
|
const passkeyLoading = ref<boolean>(false);
|
|
45
45
|
|
|
46
|
+
// Redirect if registration is disabled
|
|
47
|
+
watch(
|
|
48
|
+
() => features.value.signUpEnabled,
|
|
49
|
+
(val) => {
|
|
50
|
+
if (val === false) {
|
|
51
|
+
toast.add({
|
|
52
|
+
color: 'warning',
|
|
53
|
+
description: 'Die Registrierung ist derzeit deaktiviert.',
|
|
54
|
+
title: 'Registrierung nicht verfügbar',
|
|
55
|
+
});
|
|
56
|
+
navigateTo('/auth/login');
|
|
57
|
+
}
|
|
58
|
+
},
|
|
59
|
+
{ immediate: true },
|
|
60
|
+
);
|
|
61
|
+
|
|
46
62
|
const requireTerms = computed(() => features.value.signUpChecks === true);
|
|
47
63
|
|
|
48
64
|
const baseFields: AuthFormField[] = [
|
|
@@ -0,0 +1,133 @@
|
|
|
1
|
+
<script setup lang="ts">
|
|
2
|
+
// ============================================================================
|
|
3
|
+
// Imports
|
|
4
|
+
// ============================================================================
|
|
5
|
+
import type { AuthFormField, FormSubmitEvent } from '@nuxt/ui';
|
|
6
|
+
import type { InferOutput } from 'valibot';
|
|
7
|
+
|
|
8
|
+
import * as v from 'valibot';
|
|
9
|
+
|
|
10
|
+
// ============================================================================
|
|
11
|
+
// Composables
|
|
12
|
+
// ============================================================================
|
|
13
|
+
const toast = useToast();
|
|
14
|
+
const { initSetup } = useSystemSetup();
|
|
15
|
+
const { translateError } = useLtErrorTranslation();
|
|
16
|
+
|
|
17
|
+
// ============================================================================
|
|
18
|
+
// Page Meta
|
|
19
|
+
// ============================================================================
|
|
20
|
+
definePageMeta({
|
|
21
|
+
layout: 'slim',
|
|
22
|
+
});
|
|
23
|
+
|
|
24
|
+
// ============================================================================
|
|
25
|
+
// Variables
|
|
26
|
+
// ============================================================================
|
|
27
|
+
const loading = ref<boolean>(false);
|
|
28
|
+
|
|
29
|
+
const fields: AuthFormField[] = [
|
|
30
|
+
{
|
|
31
|
+
label: 'Name',
|
|
32
|
+
name: 'name',
|
|
33
|
+
placeholder: 'Name eingeben',
|
|
34
|
+
required: true,
|
|
35
|
+
type: 'text',
|
|
36
|
+
},
|
|
37
|
+
{
|
|
38
|
+
label: 'E-Mail',
|
|
39
|
+
name: 'email',
|
|
40
|
+
placeholder: 'E-Mail eingeben',
|
|
41
|
+
required: true,
|
|
42
|
+
type: 'email',
|
|
43
|
+
},
|
|
44
|
+
{
|
|
45
|
+
label: 'Passwort',
|
|
46
|
+
name: 'password',
|
|
47
|
+
placeholder: 'Passwort eingeben',
|
|
48
|
+
required: true,
|
|
49
|
+
type: 'password',
|
|
50
|
+
},
|
|
51
|
+
{
|
|
52
|
+
label: 'Passwort bestätigen',
|
|
53
|
+
name: 'confirmPassword',
|
|
54
|
+
placeholder: 'Passwort wiederholen',
|
|
55
|
+
required: true,
|
|
56
|
+
type: 'password',
|
|
57
|
+
},
|
|
58
|
+
];
|
|
59
|
+
|
|
60
|
+
const schema = v.pipe(
|
|
61
|
+
v.object({
|
|
62
|
+
confirmPassword: v.pipe(v.string('Passwortbestätigung ist erforderlich'), v.minLength(8, 'Mindestens 8 Zeichen erforderlich')),
|
|
63
|
+
email: v.pipe(v.string('E-Mail ist erforderlich'), v.email('Bitte eine gültige E-Mail eingeben')),
|
|
64
|
+
name: v.pipe(v.string('Name ist erforderlich'), v.minLength(2, 'Mindestens 2 Zeichen erforderlich')),
|
|
65
|
+
password: v.pipe(v.string('Passwort ist erforderlich'), v.minLength(8, 'Mindestens 8 Zeichen erforderlich')),
|
|
66
|
+
}),
|
|
67
|
+
v.forward(
|
|
68
|
+
v.partialCheck([['password'], ['confirmPassword']], (input) => input.password === input.confirmPassword, 'Passwörter stimmen nicht überein'),
|
|
69
|
+
['confirmPassword'],
|
|
70
|
+
),
|
|
71
|
+
);
|
|
72
|
+
|
|
73
|
+
type Schema = InferOutput<typeof schema>;
|
|
74
|
+
|
|
75
|
+
// ============================================================================
|
|
76
|
+
// Functions
|
|
77
|
+
// ============================================================================
|
|
78
|
+
async function onSubmit(payload: FormSubmitEvent<Schema>): Promise<void> {
|
|
79
|
+
loading.value = true;
|
|
80
|
+
|
|
81
|
+
try {
|
|
82
|
+
await initSetup({
|
|
83
|
+
email: payload.data.email,
|
|
84
|
+
name: payload.data.name,
|
|
85
|
+
password: payload.data.password,
|
|
86
|
+
});
|
|
87
|
+
|
|
88
|
+
toast.add({
|
|
89
|
+
color: 'success',
|
|
90
|
+
description: 'Das System wurde erfolgreich eingerichtet.',
|
|
91
|
+
title: 'Administrator-Account erstellt',
|
|
92
|
+
});
|
|
93
|
+
|
|
94
|
+
await navigateTo('/auth/login');
|
|
95
|
+
} catch (err: unknown) {
|
|
96
|
+
toast.add({
|
|
97
|
+
color: 'error',
|
|
98
|
+
description: translateError(err instanceof Error ? err.message : 'Einrichtung fehlgeschlagen'),
|
|
99
|
+
title: 'Fehler',
|
|
100
|
+
});
|
|
101
|
+
} finally {
|
|
102
|
+
loading.value = false;
|
|
103
|
+
}
|
|
104
|
+
}
|
|
105
|
+
</script>
|
|
106
|
+
|
|
107
|
+
<template>
|
|
108
|
+
<UPageCard class="w-md" variant="naked">
|
|
109
|
+
<UAuthForm
|
|
110
|
+
:schema="schema"
|
|
111
|
+
title="System einrichten"
|
|
112
|
+
icon="i-lucide-shield-check"
|
|
113
|
+
:fields="fields"
|
|
114
|
+
:loading="loading"
|
|
115
|
+
:submit="{
|
|
116
|
+
label: 'System einrichten',
|
|
117
|
+
block: true,
|
|
118
|
+
}"
|
|
119
|
+
@submit="onSubmit"
|
|
120
|
+
>
|
|
121
|
+
<template #description>
|
|
122
|
+
<p class="text-sm text-muted">Erstelle den ersten Administrator-Account, um das System zu starten.</p>
|
|
123
|
+
</template>
|
|
124
|
+
|
|
125
|
+
<template #footer>
|
|
126
|
+
<p class="text-center text-sm text-muted">
|
|
127
|
+
Bereits eingerichtet?
|
|
128
|
+
<ULink to="/auth/login" class="text-primary font-medium">Anmelden</ULink>
|
|
129
|
+
</p>
|
|
130
|
+
</template>
|
|
131
|
+
</UAuthForm>
|
|
132
|
+
</UPageCard>
|
|
133
|
+
</template>
|
|
@@ -17,10 +17,10 @@ export default defineNuxtConfig({
|
|
|
17
17
|
// ============================================================================
|
|
18
18
|
// @ts-expect-error bug.lt module config - module temporarily disabled
|
|
19
19
|
bug: {
|
|
20
|
-
enabled: process.env.
|
|
21
|
-
linearApiKey: process.env.
|
|
22
|
-
linearProjectName: process.env.
|
|
23
|
-
linearTeamName: process.env.
|
|
20
|
+
enabled: process.env.NUXT_PUBLIC_APP_ENV !== 'production',
|
|
21
|
+
linearApiKey: process.env.NUXT_LINEAR_API_KEY,
|
|
22
|
+
linearProjectName: process.env.NUXT_LINEAR_PROJECT_NAME,
|
|
23
|
+
linearTeamName: process.env.NUXT_LINEAR_TEAM_NAME,
|
|
24
24
|
},
|
|
25
25
|
|
|
26
26
|
compatibilityDate: '2025-01-15',
|
|
@@ -49,7 +49,7 @@ export default defineNuxtConfig({
|
|
|
49
49
|
// ============================================================================
|
|
50
50
|
// Environment-specific Layers
|
|
51
51
|
// ============================================================================
|
|
52
|
-
extends: process.env.
|
|
52
|
+
extends: process.env.NUXT_PUBLIC_APP_ENV === 'development' ? ['./docs'] : [],
|
|
53
53
|
|
|
54
54
|
// ============================================================================
|
|
55
55
|
// Image Optimization
|
|
@@ -87,16 +87,20 @@ export default defineNuxtConfig({
|
|
|
87
87
|
// baseURL is used in production mode for cross-origin API requests
|
|
88
88
|
// In dev mode, Nuxt proxy is used (baseURL is ignored, requests go through /api/iam)
|
|
89
89
|
// In production, requests go directly to baseURL + basePath (e.g., https://api.example.com/iam)
|
|
90
|
-
baseURL: process.env.
|
|
90
|
+
baseURL: process.env.NUXT_API_URL || 'http://localhost:3000',
|
|
91
91
|
basePath: '/iam',
|
|
92
92
|
loginPath: '/auth/login',
|
|
93
93
|
twoFactorRedirectPath: '/auth/2fa',
|
|
94
94
|
enableAdmin: true,
|
|
95
95
|
enableTwoFactor: true,
|
|
96
96
|
enablePasskey: true,
|
|
97
|
+
systemSetup: {
|
|
98
|
+
enabled: true,
|
|
99
|
+
setupPath: '/auth/setup',
|
|
100
|
+
},
|
|
97
101
|
interceptor: {
|
|
98
102
|
enabled: true,
|
|
99
|
-
publicPaths: ['/auth/login', '/auth/register', '/auth/forgot-password', '/auth/reset-password'],
|
|
103
|
+
publicPaths: ['/auth/login', '/auth/register', '/auth/forgot-password', '/auth/reset-password', '/auth/setup'],
|
|
100
104
|
},
|
|
101
105
|
},
|
|
102
106
|
tus: {
|
|
@@ -134,7 +138,7 @@ export default defineNuxtConfig({
|
|
|
134
138
|
// Analytics (Plausible)
|
|
135
139
|
// ============================================================================
|
|
136
140
|
plausible: {
|
|
137
|
-
apiHost: process.env.
|
|
141
|
+
apiHost: process.env.NUXT_PLAUSIBLE_API_URL,
|
|
138
142
|
ignoredHostnames: ['localhost'],
|
|
139
143
|
},
|
|
140
144
|
|
|
@@ -149,13 +153,13 @@ export default defineNuxtConfig({
|
|
|
149
153
|
// Runtime Configuration (Environment Variables)
|
|
150
154
|
// ============================================================================
|
|
151
155
|
runtimeConfig: {
|
|
152
|
-
// Server-only
|
|
153
|
-
apiUrl:
|
|
156
|
+
// Server-only — NUXT_API_URL overrides this
|
|
157
|
+
apiUrl: 'http://localhost:3000',
|
|
154
158
|
public: {
|
|
155
|
-
// Client-side
|
|
156
|
-
apiUrl:
|
|
157
|
-
|
|
158
|
-
webPushKey:
|
|
159
|
+
// Client-side — NUXT_PUBLIC_API_URL overrides this
|
|
160
|
+
apiUrl: 'http://localhost:3000',
|
|
161
|
+
// NUXT_PUBLIC_WEB_PUSH_KEY overrides this
|
|
162
|
+
webPushKey: '',
|
|
159
163
|
},
|
|
160
164
|
},
|
|
161
165
|
|
|
@@ -164,7 +168,7 @@ export default defineNuxtConfig({
|
|
|
164
168
|
// ============================================================================
|
|
165
169
|
site: {
|
|
166
170
|
name: 'Nuxt Base Starter',
|
|
167
|
-
url: process.env.
|
|
171
|
+
url: process.env.NUXT_PUBLIC_SITE_URL,
|
|
168
172
|
},
|
|
169
173
|
|
|
170
174
|
// ============================================================================
|
|
@@ -2,7 +2,7 @@ import { defineConfig } from '@hey-api/openapi-ts';
|
|
|
2
2
|
|
|
3
3
|
export default defineConfig({
|
|
4
4
|
client: '@hey-api/client-fetch',
|
|
5
|
-
input: process.env.
|
|
5
|
+
input: process.env.NUXT_API_URL || 'http://127.0.0.1:3000/api-docs-json',
|
|
6
6
|
output: {
|
|
7
7
|
format: 'prettier',
|
|
8
8
|
lint: 'eslint',
|
|
@@ -51,7 +51,7 @@
|
|
|
51
51
|
"@better-auth/passkey": "1.4.10",
|
|
52
52
|
"@hey-api/client-fetch": "0.13.1",
|
|
53
53
|
"@lenne.tech/bug.lt": "latest",
|
|
54
|
-
"@lenne.tech/nuxt-extensions": "1.2.
|
|
54
|
+
"@lenne.tech/nuxt-extensions": "1.2.11",
|
|
55
55
|
"@nuxt/image": "2.0.0",
|
|
56
56
|
"@nuxt/ui": "4.3.0",
|
|
57
57
|
"@pinia/nuxt": "0.11.3",
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
lockfileVersion: '9.0'
|
|
2
2
|
|
|
3
3
|
settings:
|
|
4
|
-
autoInstallPeers:
|
|
4
|
+
autoInstallPeers: false
|
|
5
5
|
excludeLinksFromLockfile: false
|
|
6
6
|
|
|
7
7
|
importers:
|
|
@@ -18,17 +18,17 @@ importers:
|
|
|
18
18
|
specifier: latest
|
|
19
19
|
version: 1.6.5(@babel/parser@7.29.0)(db0@0.3.4)(embla-carousel@8.6.0)(ioredis@5.9.2)(magicast@0.5.2)(qrcode@1.5.4)(typescript@5.9.3)(valibot@1.2.0(typescript@5.9.3))(vite@7.3.1(@types/node@25.0.6)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-router@4.6.4(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))
|
|
20
20
|
'@lenne.tech/nuxt-extensions':
|
|
21
|
-
specifier: 1.2.
|
|
22
|
-
version: 1.2.
|
|
21
|
+
specifier: 1.2.11
|
|
22
|
+
version: 1.2.11(8cff6424136a3b1053b11e6eec8b6551)
|
|
23
23
|
'@nuxt/image':
|
|
24
24
|
specifier: 2.0.0
|
|
25
25
|
version: 2.0.0(db0@0.3.4)(ioredis@5.9.2)(magicast@0.5.2)
|
|
26
26
|
'@nuxt/ui':
|
|
27
27
|
specifier: 4.3.0
|
|
28
|
-
version: 4.3.0(
|
|
28
|
+
version: 4.3.0(@babel/parser@7.29.0)(@floating-ui/dom@1.7.5)(@tiptap/extensions@3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0))(db0@0.3.4)(embla-carousel@8.6.0)(ioredis@5.9.2)(magicast@0.5.2)(qrcode@1.5.4)(typescript@5.9.3)(valibot@1.2.0(typescript@5.9.3))(vite@7.3.1(@types/node@25.0.6)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-router@4.6.4(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))(zod@4.3.6)
|
|
29
29
|
'@pinia/nuxt':
|
|
30
30
|
specifier: 0.11.3
|
|
31
|
-
version: 0.11.3(magicast@0.5.2)
|
|
31
|
+
version: 0.11.3(magicast@0.5.2)
|
|
32
32
|
'@vueuse/nuxt':
|
|
33
33
|
specifier: 14.1.0
|
|
34
34
|
version: 14.1.0(magicast@0.5.2)(nuxt@4.2.2(@parcel/watcher@2.5.6)(@types/node@25.0.6)(@vue/compiler-sfc@3.5.28)(cac@6.7.14)(db0@0.3.4)(ioredis@5.9.2)(lightningcss@1.31.1)(magicast@0.5.2)(oxlint@1.43.0)(rollup@4.57.1)(terser@5.46.0)(typescript@5.9.3)(vite@7.3.1(@types/node@25.0.6)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
|
|
@@ -974,8 +974,8 @@ packages:
|
|
|
974
974
|
'@lenne.tech/bug.lt@1.6.5':
|
|
975
975
|
resolution: {integrity: sha512-3aSfAcuizL8WvmDaHUlSjpLVdaeSRtNMrEPle7IoqA9VBmfaCfUKzOQmSdnz69Laeq6hn1a2P1HVcsj1QoOWuQ==}
|
|
976
976
|
|
|
977
|
-
'@lenne.tech/nuxt-extensions@1.2.
|
|
978
|
-
resolution: {integrity: sha512-
|
|
977
|
+
'@lenne.tech/nuxt-extensions@1.2.11':
|
|
978
|
+
resolution: {integrity: sha512-VCwBGV3GRphg83oeAdNUH6xmFGVHJKWvn8xt84Wog/0weS6W10VKlvkHM937WEE1vt4yYVzs8njP1+d17dbf6w==}
|
|
979
979
|
peerDependencies:
|
|
980
980
|
'@better-auth/passkey': '>=1.0.0'
|
|
981
981
|
'@playwright/test': '>=1.0.0'
|
|
@@ -2273,14 +2273,6 @@ packages:
|
|
|
2273
2273
|
peerDependencies:
|
|
2274
2274
|
'@tiptap/core': ^3.19.0
|
|
2275
2275
|
|
|
2276
|
-
'@tiptap/extension-collaboration@3.19.0':
|
|
2277
|
-
resolution: {integrity: sha512-Cb4RXo2C05w44OsT22weLYqf2mnyTacvtz3iWYswgq1slMOl4Gs5RQE+jHgyvjVbhj34yPS6ghoWBBrriX9a1w==}
|
|
2278
|
-
peerDependencies:
|
|
2279
|
-
'@tiptap/core': ^3.19.0
|
|
2280
|
-
'@tiptap/pm': ^3.19.0
|
|
2281
|
-
'@tiptap/y-tiptap': ^3.0.2
|
|
2282
|
-
yjs: ^13
|
|
2283
|
-
|
|
2284
2276
|
'@tiptap/extension-document@3.19.0':
|
|
2285
2277
|
resolution: {integrity: sha512-AOf0kHKSFO0ymjVgYSYDncRXTITdTcrj1tqxVazrmO60KNl1Rc2dAggDvIVTEBy5NvceF0scc7q3sE/5ZtVV7A==}
|
|
2286
2278
|
peerDependencies:
|
|
@@ -2294,15 +2286,6 @@ packages:
|
|
|
2294
2286
|
'@tiptap/vue-3': ^3.13.0
|
|
2295
2287
|
vue: ^3.0.0
|
|
2296
2288
|
|
|
2297
|
-
'@tiptap/extension-drag-handle@3.19.0':
|
|
2298
|
-
resolution: {integrity: sha512-bNvqwj5hmQyWBq8oyFUGa5HcK0edyMmFd7cgGiCRSR/H2DrT34zB286+C0dyksk1n5CjmO0wGxQ3qmjdfzzkQg==}
|
|
2299
|
-
peerDependencies:
|
|
2300
|
-
'@tiptap/core': ^3.19.0
|
|
2301
|
-
'@tiptap/extension-collaboration': ^3.19.0
|
|
2302
|
-
'@tiptap/extension-node-range': ^3.19.0
|
|
2303
|
-
'@tiptap/pm': ^3.19.0
|
|
2304
|
-
'@tiptap/y-tiptap': ^3.0.2
|
|
2305
|
-
|
|
2306
2289
|
'@tiptap/extension-dropcursor@3.19.0':
|
|
2307
2290
|
resolution: {integrity: sha512-sf3dEZXiLvsGqVK2maUIzXY6qtYYCvBumag7+VPTMGQ0D4hiZ1X/4ukt4+6VXDg5R2WP1CoIt/QvUetUjWNhbQ==}
|
|
2308
2291
|
peerDependencies:
|
|
@@ -2375,12 +2358,6 @@ packages:
|
|
|
2375
2358
|
'@tiptap/pm': ^3.13.0
|
|
2376
2359
|
'@tiptap/suggestion': ^3.13.0
|
|
2377
2360
|
|
|
2378
|
-
'@tiptap/extension-node-range@3.19.0':
|
|
2379
|
-
resolution: {integrity: sha512-rIq1e+jTzdtHrGyWKZgRUJc8Phz5Crh1WqBL71QPJgLZqGbcCeGTHBFBOrU2AWwQNa8lYEbGD+FTFxVfvxegUA==}
|
|
2380
|
-
peerDependencies:
|
|
2381
|
-
'@tiptap/core': ^3.19.0
|
|
2382
|
-
'@tiptap/pm': ^3.19.0
|
|
2383
|
-
|
|
2384
2361
|
'@tiptap/extension-ordered-list@3.19.0':
|
|
2385
2362
|
resolution: {integrity: sha512-cxGsINquwHYE1kmhAcLNLHAofmoDEG6jbesR5ybl7tU5JwtKVO7S/xZatll2DU1dsDAXWPWEeeMl4e/9svYjCg==}
|
|
2386
2363
|
peerDependencies:
|
|
@@ -2443,16 +2420,6 @@ packages:
|
|
|
2443
2420
|
'@tiptap/pm': ^3.13.0
|
|
2444
2421
|
vue: ^3.0.0
|
|
2445
2422
|
|
|
2446
|
-
'@tiptap/y-tiptap@3.0.2':
|
|
2447
|
-
resolution: {integrity: sha512-flMn/YW6zTbc6cvDaUPh/NfLRTXDIqgpBUkYzM74KA1snqQwhOMjnRcnpu4hDFrTnPO6QGzr99vRyXEA7M44WA==}
|
|
2448
|
-
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
|
|
2449
|
-
peerDependencies:
|
|
2450
|
-
prosemirror-model: ^1.7.1
|
|
2451
|
-
prosemirror-state: ^1.2.3
|
|
2452
|
-
prosemirror-view: ^1.9.10
|
|
2453
|
-
y-protocols: ^1.0.1
|
|
2454
|
-
yjs: ^13.5.38
|
|
2455
|
-
|
|
2456
2423
|
'@tybys/wasm-util@0.10.1':
|
|
2457
2424
|
resolution: {integrity: sha512-9tTaPJLSiejZKx+Bmog4uSubteqTvFrVrURwkmHixBo0G4seD0zUxp98E1DzUBJxLQ3NPwXrGKDiVjwx/DpPsg==}
|
|
2458
2425
|
|
|
@@ -2641,23 +2608,14 @@ packages:
|
|
|
2641
2608
|
'@vue/devtools-api@6.6.4':
|
|
2642
2609
|
resolution: {integrity: sha512-sGhTPMuXqZ1rVOk32RylztWkfXTRhuS7vgAKv0zjqk8gbsHkJ7xfFf+jbySxt7tWObEJwyKaHMikV/WGDiQm8g==}
|
|
2643
2610
|
|
|
2644
|
-
'@vue/devtools-api@7.7.9':
|
|
2645
|
-
resolution: {integrity: sha512-kIE8wvwlcZ6TJTbNeU2HQNtaxLx3a84aotTITUuL/4bzfPxzajGBOoqjMhwZJ8L9qFYDU/lAYMEEm11dnZOD6g==}
|
|
2646
|
-
|
|
2647
2611
|
'@vue/devtools-core@8.0.6':
|
|
2648
2612
|
resolution: {integrity: sha512-fN7iVtpSQQdtMORWwVZ1JiIAKriinhD+lCHqPw9Rr252ae2TczILEmW0zcAZifPW8HfYcbFkn+h7Wv6kQQCayw==}
|
|
2649
2613
|
peerDependencies:
|
|
2650
2614
|
vue: ^3.0.0
|
|
2651
2615
|
|
|
2652
|
-
'@vue/devtools-kit@7.7.9':
|
|
2653
|
-
resolution: {integrity: sha512-PyQ6odHSgiDVd4hnTP+aDk2X4gl2HmLDfiyEnn3/oV+ckFDuswRs4IbBT7vacMuGdwY/XemxBoh302ctbsptuA==}
|
|
2654
|
-
|
|
2655
2616
|
'@vue/devtools-kit@8.0.6':
|
|
2656
2617
|
resolution: {integrity: sha512-9zXZPTJW72OteDXeSa5RVML3zWDCRcO5t77aJqSs228mdopYj5AiTpihozbsfFJ0IodfNs7pSgOGO3qfCuxDtw==}
|
|
2657
2618
|
|
|
2658
|
-
'@vue/devtools-shared@7.7.9':
|
|
2659
|
-
resolution: {integrity: sha512-iWAb0v2WYf0QWmxCGy0seZNDPdO3Sp5+u78ORnyeonS6MT4PC7VPrryX2BpMJrwlDeaZ6BD4vP4XKjK0SZqaeA==}
|
|
2660
|
-
|
|
2661
2619
|
'@vue/devtools-shared@8.0.6':
|
|
2662
2620
|
resolution: {integrity: sha512-Pp1JylTqlgMJvxW6MGyfTF8vGvlBSCAvMFaDCYa82Mgw7TT5eE5kkHgDvmOGHWeJE4zIDfCpCxHapsK2LtIAJg==}
|
|
2663
2621
|
|
|
@@ -4034,9 +3992,6 @@ packages:
|
|
|
4034
3992
|
resolution: {integrity: sha512-6B3tLtFqtQS4ekarvLVMZ+X+VlvQekbe4taUkf/rhVO3d/h0M2rfARm/pXLcPEsjjMsFgrFgSrhQIxcSVrBz8w==}
|
|
4035
3993
|
engines: {node: '>=18'}
|
|
4036
3994
|
|
|
4037
|
-
isomorphic.js@0.2.5:
|
|
4038
|
-
resolution: {integrity: sha512-PIeMbHqMt4DnUP3MA/Flc0HElYjMXArsw1qwJZcm9sqR8mq3l8NYizFMty0pWwE/tzIGH3EKK5+jes5mAr85yw==}
|
|
4039
|
-
|
|
4040
3995
|
jackspeak@3.4.3:
|
|
4041
3996
|
resolution: {integrity: sha512-OGlZQpz2yfahA/Rd1Y8Cd9SIEsqvXkLVoSw/cgwhnhFMDbsQFeZYoJJ7bIZBS9BcamUW96asq/npPWugM+RQBw==}
|
|
4042
3997
|
|
|
@@ -4114,11 +4069,6 @@ packages:
|
|
|
4114
4069
|
resolution: {integrity: sha512-b94GiNHQNy6JNTrt5w6zNyffMrNkXZb3KTkCZJb2V1xaEGCk093vkZ2jk3tpaeP33/OiXC+WvK9AxUebnf5nbw==}
|
|
4115
4070
|
engines: {node: '>= 0.6.3'}
|
|
4116
4071
|
|
|
4117
|
-
lib0@0.2.117:
|
|
4118
|
-
resolution: {integrity: sha512-DeXj9X5xDCjgKLU/7RR+/HQEVzuuEUiwldwOGsHK/sfAfELGWEyTcf0x+uOvCvK3O2zPmZePXWL85vtia6GyZw==}
|
|
4119
|
-
engines: {node: '>=16'}
|
|
4120
|
-
hasBin: true
|
|
4121
|
-
|
|
4122
4072
|
lighthouse-logger@2.0.2:
|
|
4123
4073
|
resolution: {integrity: sha512-vWl2+u5jgOQuZR55Z1WM0XDdrJT6mzMP8zHUct7xTlWhuQs+eV0g+QL0RQdFjT54zVmbhLCP8vIVpy1wGn/gCg==}
|
|
4124
4074
|
|
|
@@ -4800,9 +4750,6 @@ packages:
|
|
|
4800
4750
|
resolution: {integrity: sha512-//nshmD55c46FuFw26xV/xFAaB5HF9Xdap7HJBBnrKdAd6/GxDBaNA1870O79+9ueg61cZLSVc+OaFlfmObYVQ==}
|
|
4801
4751
|
engines: {node: '>= 14.16'}
|
|
4802
4752
|
|
|
4803
|
-
perfect-debounce@1.0.0:
|
|
4804
|
-
resolution: {integrity: sha512-xCy9V055GLEqoFaHoC1SoLIaLmWctgCUaBaWxDZ7/Zx4CTyX7cJQLJOok/orfjZAh9kEYpjJa4d0KcJmCbctZA==}
|
|
4805
|
-
|
|
4806
4753
|
perfect-debounce@2.1.0:
|
|
4807
4754
|
resolution: {integrity: sha512-LjgdTytVFXeUgtHZr9WYViYSM/g8MkcTPYDlPa3cDqMirHjKiSZPYd6DoL7pK8AJQr+uWkQvCjHNdiMqsrJs+g==}
|
|
4808
4755
|
|
|
@@ -4822,15 +4769,6 @@ packages:
|
|
|
4822
4769
|
engines: {node: '>=0.10'}
|
|
4823
4770
|
hasBin: true
|
|
4824
4771
|
|
|
4825
|
-
pinia@3.0.4:
|
|
4826
|
-
resolution: {integrity: sha512-l7pqLUFTI/+ESXn6k3nu30ZIzW5E2WZF/LaHJEpoq6ElcLD+wduZoB2kBN19du6K/4FDpPMazY2wJr+IndBtQw==}
|
|
4827
|
-
peerDependencies:
|
|
4828
|
-
typescript: '>=4.5.0'
|
|
4829
|
-
vue: ^3.5.11
|
|
4830
|
-
peerDependenciesMeta:
|
|
4831
|
-
typescript:
|
|
4832
|
-
optional: true
|
|
4833
|
-
|
|
4834
4772
|
pkg-types@1.3.1:
|
|
4835
4773
|
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
|
|
4836
4774
|
|
|
@@ -5864,9 +5802,6 @@ packages:
|
|
|
5864
5802
|
|
|
5865
5803
|
vaul-vue@0.4.1:
|
|
5866
5804
|
resolution: {integrity: sha512-A6jOWOZX5yvyo1qMn7IveoWN91mJI5L3BUKsIwkg6qrTGgHs1Sb1JF/vyLJgnbN1rH4OOOxFbtqL9A46bOyGUQ==}
|
|
5867
|
-
peerDependencies:
|
|
5868
|
-
reka-ui: ^2.0.0
|
|
5869
|
-
vue: ^3.3.0
|
|
5870
5805
|
|
|
5871
5806
|
vite-dev-rpc@1.1.0:
|
|
5872
5807
|
resolution: {integrity: sha512-pKXZlgoXGoE8sEKiKJSng4hI1sQ4wi5YT24FCrwrLt6opmkjlqPPVmiPWWJn8M8byMxRGzp1CrFuqQs4M/Z39A==}
|
|
@@ -6165,12 +6100,6 @@ packages:
|
|
|
6165
6100
|
engines: {node: '>= 0.10.0'}
|
|
6166
6101
|
hasBin: true
|
|
6167
6102
|
|
|
6168
|
-
y-protocols@1.0.7:
|
|
6169
|
-
resolution: {integrity: sha512-YSVsLoXxO67J6eE/nV4AtFtT3QEotZf5sK5BHxFBXso7VDUT3Tx07IfA6hsu5Q5OmBdMkQVmFZ9QOA7fikWvnw==}
|
|
6170
|
-
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
|
|
6171
|
-
peerDependencies:
|
|
6172
|
-
yjs: ^13.0.0
|
|
6173
|
-
|
|
6174
6103
|
y18n@4.0.3:
|
|
6175
6104
|
resolution: {integrity: sha512-JKhqTOwSrqNA1NY5lSztJ1GrBiUodLMmIZuLiDaMRJ+itFd+ABVE8XBjOvIWL+rSqNDC74LCSFmlb/U4UZ4hJQ==}
|
|
6176
6105
|
|
|
@@ -6206,10 +6135,6 @@ packages:
|
|
|
6206
6135
|
resolution: {integrity: sha512-7dSzzRQ++CKnNI/krKnYRV7JKKPUXMEh61soaHKg9mrWEhzFWhFnxPxGl+69cD1Ou63C13NUPCnmIcrvqCuM6w==}
|
|
6207
6136
|
engines: {node: '>=12'}
|
|
6208
6137
|
|
|
6209
|
-
yjs@13.6.29:
|
|
6210
|
-
resolution: {integrity: sha512-kHqDPdltoXH+X4w1lVmMtddE3Oeqq48nM40FD5ojTd8xYhQpzIDcfE2keMSU5bAgRPJBe225WTUdyUgj1DtbiQ==}
|
|
6211
|
-
engines: {node: '>=16.0.0', npm: '>=8.0.0'}
|
|
6212
|
-
|
|
6213
6138
|
yoctocolors@2.1.2:
|
|
6214
6139
|
resolution: {integrity: sha512-CzhO+pFNo8ajLM2d2IW/R93ipy99LWjtwblvC1RsoSUMZgyLbYFr221TnSNT7GjGdYui6P459mw9JH/g/zW2ug==}
|
|
6215
6140
|
engines: {node: '>=18'}
|
|
@@ -7010,7 +6935,7 @@ snapshots:
|
|
|
7010
6935
|
- vue-router
|
|
7011
6936
|
- yup
|
|
7012
6937
|
|
|
7013
|
-
'@lenne.tech/nuxt-extensions@1.2.
|
|
6938
|
+
'@lenne.tech/nuxt-extensions@1.2.11(8cff6424136a3b1053b11e6eec8b6551)':
|
|
7014
6939
|
dependencies:
|
|
7015
6940
|
'@nuxt/kit': 4.3.0(magicast@0.5.2)
|
|
7016
6941
|
better-auth: 1.4.10(mongodb@7.1.0)(vitest@3.2.4(@types/node@25.0.6)(happy-dom@20.3.7)(jiti@2.6.1)(jsdom@27.4.0(@noble/hashes@2.0.1))(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))
|
|
@@ -7570,7 +7495,7 @@ snapshots:
|
|
|
7570
7495
|
unplugin: 2.3.11
|
|
7571
7496
|
unplugin-auto-import: 20.3.0(@nuxt/kit@4.3.1(magicast@0.5.2))(@vueuse/core@13.9.0(vue@3.5.28(typescript@5.9.3)))
|
|
7572
7497
|
unplugin-vue-components: 30.0.0(@babel/parser@7.29.0)(@nuxt/kit@4.3.1(magicast@0.5.2))(vue@3.5.28(typescript@5.9.3))
|
|
7573
|
-
vaul-vue: 0.4.1(
|
|
7498
|
+
vaul-vue: 0.4.1(typescript@5.9.3)
|
|
7574
7499
|
vue-component-type-helpers: 3.2.4
|
|
7575
7500
|
optionalDependencies:
|
|
7576
7501
|
valibot: 1.2.0(typescript@5.9.3)
|
|
@@ -7617,7 +7542,7 @@ snapshots:
|
|
|
7617
7542
|
- vite
|
|
7618
7543
|
- vue
|
|
7619
7544
|
|
|
7620
|
-
'@nuxt/ui@4.3.0(
|
|
7545
|
+
'@nuxt/ui@4.3.0(@babel/parser@7.29.0)(@floating-ui/dom@1.7.5)(@tiptap/extensions@3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0))(db0@0.3.4)(embla-carousel@8.6.0)(ioredis@5.9.2)(magicast@0.5.2)(qrcode@1.5.4)(typescript@5.9.3)(valibot@1.2.0(typescript@5.9.3))(vite@7.3.1(@types/node@25.0.6)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue-router@4.6.4(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))(zod@4.3.6)':
|
|
7621
7546
|
dependencies:
|
|
7622
7547
|
'@iconify/vue': 5.0.0(vue@3.5.28(typescript@5.9.3))
|
|
7623
7548
|
'@internationalized/date': 3.11.0
|
|
@@ -7634,7 +7559,7 @@ snapshots:
|
|
|
7634
7559
|
'@tanstack/vue-virtual': 3.13.18(vue@3.5.28(typescript@5.9.3))
|
|
7635
7560
|
'@tiptap/core': 3.13.0(@tiptap/pm@3.13.0)
|
|
7636
7561
|
'@tiptap/extension-bubble-menu': 3.13.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)
|
|
7637
|
-
'@tiptap/extension-drag-handle-vue-3': 3.13.0(@tiptap/
|
|
7562
|
+
'@tiptap/extension-drag-handle-vue-3': 3.13.0(@tiptap/pm@3.13.0)(@tiptap/vue-3@3.13.0(@floating-ui/dom@1.7.5)(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))
|
|
7638
7563
|
'@tiptap/extension-floating-menu': 3.13.0(@floating-ui/dom@1.7.5)(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)
|
|
7639
7564
|
'@tiptap/extension-horizontal-rule': 3.13.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)
|
|
7640
7565
|
'@tiptap/extension-image': 3.13.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))
|
|
@@ -7676,7 +7601,7 @@ snapshots:
|
|
|
7676
7601
|
unplugin: 2.3.11
|
|
7677
7602
|
unplugin-auto-import: 20.3.0(@nuxt/kit@4.3.1(magicast@0.5.2))(@vueuse/core@14.2.0(vue@3.5.28(typescript@5.9.3)))
|
|
7678
7603
|
unplugin-vue-components: 30.0.0(@babel/parser@7.29.0)(@nuxt/kit@4.3.1(magicast@0.5.2))(vue@3.5.28(typescript@5.9.3))
|
|
7679
|
-
vaul-vue: 0.4.1(
|
|
7604
|
+
vaul-vue: 0.4.1(typescript@5.9.3)
|
|
7680
7605
|
vue-component-type-helpers: 3.2.4
|
|
7681
7606
|
optionalDependencies:
|
|
7682
7607
|
valibot: 1.2.0(typescript@5.9.3)
|
|
@@ -8255,10 +8180,9 @@ snapshots:
|
|
|
8255
8180
|
tslib: 2.8.1
|
|
8256
8181
|
tsyringe: 4.10.0
|
|
8257
8182
|
|
|
8258
|
-
'@pinia/nuxt@0.11.3(magicast@0.5.2)
|
|
8183
|
+
'@pinia/nuxt@0.11.3(magicast@0.5.2)':
|
|
8259
8184
|
dependencies:
|
|
8260
8185
|
'@nuxt/kit': 4.3.1(magicast@0.5.2)
|
|
8261
|
-
pinia: 3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
|
|
8262
8186
|
transitivePeerDependencies:
|
|
8263
8187
|
- magicast
|
|
8264
8188
|
|
|
@@ -8638,33 +8562,16 @@ snapshots:
|
|
|
8638
8562
|
dependencies:
|
|
8639
8563
|
'@tiptap/core': 3.13.0(@tiptap/pm@3.13.0)
|
|
8640
8564
|
|
|
8641
|
-
'@tiptap/extension-collaboration@3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(yjs@13.6.29)':
|
|
8642
|
-
dependencies:
|
|
8643
|
-
'@tiptap/core': 3.13.0(@tiptap/pm@3.13.0)
|
|
8644
|
-
'@tiptap/pm': 3.13.0
|
|
8645
|
-
'@tiptap/y-tiptap': 3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29)
|
|
8646
|
-
yjs: 13.6.29
|
|
8647
|
-
|
|
8648
8565
|
'@tiptap/extension-document@3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))':
|
|
8649
8566
|
dependencies:
|
|
8650
8567
|
'@tiptap/core': 3.13.0(@tiptap/pm@3.13.0)
|
|
8651
8568
|
|
|
8652
|
-
'@tiptap/extension-drag-handle-vue-3@3.13.0(@tiptap/
|
|
8569
|
+
'@tiptap/extension-drag-handle-vue-3@3.13.0(@tiptap/pm@3.13.0)(@tiptap/vue-3@3.13.0(@floating-ui/dom@1.7.5)(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3))':
|
|
8653
8570
|
dependencies:
|
|
8654
|
-
'@tiptap/extension-drag-handle': 3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/extension-collaboration@3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(yjs@13.6.29))(@tiptap/extension-node-range@3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))
|
|
8655
8571
|
'@tiptap/pm': 3.13.0
|
|
8656
8572
|
'@tiptap/vue-3': 3.13.0(@floating-ui/dom@1.7.5)(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)(vue@3.5.28(typescript@5.9.3))
|
|
8657
8573
|
vue: 3.5.28(typescript@5.9.3)
|
|
8658
8574
|
|
|
8659
|
-
'@tiptap/extension-drag-handle@3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/extension-collaboration@3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(yjs@13.6.29))(@tiptap/extension-node-range@3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))':
|
|
8660
|
-
dependencies:
|
|
8661
|
-
'@floating-ui/dom': 1.7.5
|
|
8662
|
-
'@tiptap/core': 3.13.0(@tiptap/pm@3.13.0)
|
|
8663
|
-
'@tiptap/extension-collaboration': 3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)(@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29))(yjs@13.6.29)
|
|
8664
|
-
'@tiptap/extension-node-range': 3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)
|
|
8665
|
-
'@tiptap/pm': 3.13.0
|
|
8666
|
-
'@tiptap/y-tiptap': 3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29)
|
|
8667
|
-
|
|
8668
8575
|
'@tiptap/extension-dropcursor@3.19.0(@tiptap/extensions@3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0))':
|
|
8669
8576
|
dependencies:
|
|
8670
8577
|
'@tiptap/extensions': 3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)
|
|
@@ -8725,11 +8632,6 @@ snapshots:
|
|
|
8725
8632
|
'@tiptap/pm': 3.13.0
|
|
8726
8633
|
'@tiptap/suggestion': 3.13.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)
|
|
8727
8634
|
|
|
8728
|
-
'@tiptap/extension-node-range@3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)':
|
|
8729
|
-
dependencies:
|
|
8730
|
-
'@tiptap/core': 3.13.0(@tiptap/pm@3.13.0)
|
|
8731
|
-
'@tiptap/pm': 3.13.0
|
|
8732
|
-
|
|
8733
8635
|
'@tiptap/extension-ordered-list@3.19.0(@tiptap/extension-list@3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0))':
|
|
8734
8636
|
dependencies:
|
|
8735
8637
|
'@tiptap/extension-list': 3.19.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)
|
|
@@ -8828,15 +8730,6 @@ snapshots:
|
|
|
8828
8730
|
'@tiptap/extension-bubble-menu': 3.13.0(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)
|
|
8829
8731
|
'@tiptap/extension-floating-menu': 3.13.0(@floating-ui/dom@1.7.5)(@tiptap/core@3.13.0(@tiptap/pm@3.13.0))(@tiptap/pm@3.13.0)
|
|
8830
8732
|
|
|
8831
|
-
'@tiptap/y-tiptap@3.0.2(prosemirror-model@1.25.4)(prosemirror-state@1.4.4)(prosemirror-view@1.41.6)(y-protocols@1.0.7(yjs@13.6.29))(yjs@13.6.29)':
|
|
8832
|
-
dependencies:
|
|
8833
|
-
lib0: 0.2.117
|
|
8834
|
-
prosemirror-model: 1.25.4
|
|
8835
|
-
prosemirror-state: 1.4.4
|
|
8836
|
-
prosemirror-view: 1.41.6
|
|
8837
|
-
y-protocols: 1.0.7(yjs@13.6.29)
|
|
8838
|
-
yjs: 13.6.29
|
|
8839
|
-
|
|
8840
8733
|
'@tybys/wasm-util@0.10.1':
|
|
8841
8734
|
dependencies:
|
|
8842
8735
|
tslib: 2.8.1
|
|
@@ -9093,10 +8986,6 @@ snapshots:
|
|
|
9093
8986
|
|
|
9094
8987
|
'@vue/devtools-api@6.6.4': {}
|
|
9095
8988
|
|
|
9096
|
-
'@vue/devtools-api@7.7.9':
|
|
9097
|
-
dependencies:
|
|
9098
|
-
'@vue/devtools-kit': 7.7.9
|
|
9099
|
-
|
|
9100
8989
|
'@vue/devtools-core@8.0.6(vite@7.3.1(@types/node@25.0.6)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2))(vue@3.5.28(typescript@5.9.3))':
|
|
9101
8990
|
dependencies:
|
|
9102
8991
|
'@vue/devtools-kit': 8.0.6
|
|
@@ -9109,16 +8998,6 @@ snapshots:
|
|
|
9109
8998
|
transitivePeerDependencies:
|
|
9110
8999
|
- vite
|
|
9111
9000
|
|
|
9112
|
-
'@vue/devtools-kit@7.7.9':
|
|
9113
|
-
dependencies:
|
|
9114
|
-
'@vue/devtools-shared': 7.7.9
|
|
9115
|
-
birpc: 2.9.0
|
|
9116
|
-
hookable: 5.5.3
|
|
9117
|
-
mitt: 3.0.1
|
|
9118
|
-
perfect-debounce: 1.0.0
|
|
9119
|
-
speakingurl: 14.0.1
|
|
9120
|
-
superjson: 2.2.6
|
|
9121
|
-
|
|
9122
9001
|
'@vue/devtools-kit@8.0.6':
|
|
9123
9002
|
dependencies:
|
|
9124
9003
|
'@vue/devtools-shared': 8.0.6
|
|
@@ -9129,10 +9008,6 @@ snapshots:
|
|
|
9129
9008
|
speakingurl: 14.0.1
|
|
9130
9009
|
superjson: 2.2.6
|
|
9131
9010
|
|
|
9132
|
-
'@vue/devtools-shared@7.7.9':
|
|
9133
|
-
dependencies:
|
|
9134
|
-
rfdc: 1.4.1
|
|
9135
|
-
|
|
9136
9011
|
'@vue/devtools-shared@8.0.6':
|
|
9137
9012
|
dependencies:
|
|
9138
9013
|
rfdc: 1.4.1
|
|
@@ -10468,8 +10343,6 @@ snapshots:
|
|
|
10468
10343
|
|
|
10469
10344
|
isexe@3.1.5: {}
|
|
10470
10345
|
|
|
10471
|
-
isomorphic.js@0.2.5: {}
|
|
10472
|
-
|
|
10473
10346
|
jackspeak@3.4.3:
|
|
10474
10347
|
dependencies:
|
|
10475
10348
|
'@isaacs/cliui': 8.0.2
|
|
@@ -10551,10 +10424,6 @@ snapshots:
|
|
|
10551
10424
|
dependencies:
|
|
10552
10425
|
readable-stream: 2.3.8
|
|
10553
10426
|
|
|
10554
|
-
lib0@0.2.117:
|
|
10555
|
-
dependencies:
|
|
10556
|
-
isomorphic.js: 0.2.5
|
|
10557
|
-
|
|
10558
10427
|
lighthouse-logger@2.0.2:
|
|
10559
10428
|
dependencies:
|
|
10560
10429
|
debug: 4.4.3
|
|
@@ -11547,8 +11416,6 @@ snapshots:
|
|
|
11547
11416
|
|
|
11548
11417
|
pathval@2.0.1: {}
|
|
11549
11418
|
|
|
11550
|
-
perfect-debounce@1.0.0: {}
|
|
11551
|
-
|
|
11552
11419
|
perfect-debounce@2.1.0: {}
|
|
11553
11420
|
|
|
11554
11421
|
picocolors@1.1.1: {}
|
|
@@ -11559,13 +11426,6 @@ snapshots:
|
|
|
11559
11426
|
|
|
11560
11427
|
pidtree@0.6.0: {}
|
|
11561
11428
|
|
|
11562
|
-
pinia@3.0.4(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)):
|
|
11563
|
-
dependencies:
|
|
11564
|
-
'@vue/devtools-api': 7.7.9
|
|
11565
|
-
vue: 3.5.28(typescript@5.9.3)
|
|
11566
|
-
optionalDependencies:
|
|
11567
|
-
typescript: 5.9.3
|
|
11568
|
-
|
|
11569
11429
|
pkg-types@1.3.1:
|
|
11570
11430
|
dependencies:
|
|
11571
11431
|
confbox: 0.1.8
|
|
@@ -12684,21 +12544,14 @@ snapshots:
|
|
|
12684
12544
|
optionalDependencies:
|
|
12685
12545
|
typescript: 5.9.3
|
|
12686
12546
|
|
|
12687
|
-
vaul-vue@0.4.1(
|
|
12688
|
-
dependencies:
|
|
12689
|
-
'@vueuse/core': 10.11.1(vue@3.5.28(typescript@5.9.3))
|
|
12690
|
-
reka-ui: 2.6.0(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
|
|
12691
|
-
vue: 3.5.28(typescript@5.9.3)
|
|
12692
|
-
transitivePeerDependencies:
|
|
12693
|
-
- '@vue/composition-api'
|
|
12694
|
-
|
|
12695
|
-
vaul-vue@0.4.1(reka-ui@2.6.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3)))(vue@3.5.28(typescript@5.9.3)):
|
|
12547
|
+
vaul-vue@0.4.1(typescript@5.9.3):
|
|
12696
12548
|
dependencies:
|
|
12697
12549
|
'@vueuse/core': 10.11.1(vue@3.5.28(typescript@5.9.3))
|
|
12698
12550
|
reka-ui: 2.6.1(typescript@5.9.3)(vue@3.5.28(typescript@5.9.3))
|
|
12699
12551
|
vue: 3.5.28(typescript@5.9.3)
|
|
12700
12552
|
transitivePeerDependencies:
|
|
12701
12553
|
- '@vue/composition-api'
|
|
12554
|
+
- typescript
|
|
12702
12555
|
|
|
12703
12556
|
vite-dev-rpc@1.1.0(vite@7.3.1(@types/node@25.0.6)(jiti@2.6.1)(lightningcss@1.31.1)(terser@5.46.0)(yaml@2.8.2)):
|
|
12704
12557
|
dependencies:
|
|
@@ -12998,11 +12851,6 @@ snapshots:
|
|
|
12998
12851
|
cssfilter: 0.0.10
|
|
12999
12852
|
optional: true
|
|
13000
12853
|
|
|
13001
|
-
y-protocols@1.0.7(yjs@13.6.29):
|
|
13002
|
-
dependencies:
|
|
13003
|
-
lib0: 0.2.117
|
|
13004
|
-
yjs: 13.6.29
|
|
13005
|
-
|
|
13006
12854
|
y18n@4.0.3: {}
|
|
13007
12855
|
|
|
13008
12856
|
y18n@5.0.8: {}
|
|
@@ -13044,10 +12892,6 @@ snapshots:
|
|
|
13044
12892
|
y18n: 5.0.8
|
|
13045
12893
|
yargs-parser: 21.1.1
|
|
13046
12894
|
|
|
13047
|
-
yjs@13.6.29:
|
|
13048
|
-
dependencies:
|
|
13049
|
-
lib0: 0.2.117
|
|
13050
|
-
|
|
13051
12895
|
yoctocolors@2.1.2: {}
|
|
13052
12896
|
|
|
13053
12897
|
yoga-layout@3.2.1: {}
|
|
@@ -13,7 +13,8 @@
|
|
|
13
13
|
*/
|
|
14
14
|
export default defineEventHandler(async (event) => {
|
|
15
15
|
const path = getRouterParam(event, 'path') || '';
|
|
16
|
-
const
|
|
16
|
+
const config = useRuntimeConfig(event);
|
|
17
|
+
const apiUrl = config.apiUrl || 'http://localhost:3000';
|
|
17
18
|
const targetUrl = `${apiUrl}/iam/${path}`;
|
|
18
19
|
|
|
19
20
|
// Get query string
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "create-nuxt-base",
|
|
3
|
-
"version": "2.2.
|
|
4
|
-
"description": "Starter to generate a configured environment with VueJS, Nuxt, Tailwind,
|
|
3
|
+
"version": "2.2.7",
|
|
4
|
+
"description": "Starter to generate a configured environment with VueJS, Nuxt, Tailwind, Linting, Unit Tests, Playwright etc.",
|
|
5
5
|
"license": "MIT",
|
|
6
6
|
"author": "lenne.Tech GmbH",
|
|
7
7
|
"repository": {
|