@michaelthielemann/kestrel 1.5.0 → 1.6.0
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.
|
@@ -112,9 +112,11 @@ const head = buildPageHead({
|
|
|
112
112
|
useHead({
|
|
113
113
|
htmlAttrs: { lang: locale },
|
|
114
114
|
link: [
|
|
115
|
-
|
|
115
|
+
// `rel` needs the literal type: unhead keys its link union on it, and inside an array literal that
|
|
116
|
+
// reaches `link:` through a spread there is no contextual type to stop TS widening it to `string`.
|
|
117
|
+
...(head.canonical ? [{ rel: 'canonical' as const, href: head.canonical }] : []),
|
|
116
118
|
...head.links,
|
|
117
|
-
{ rel: 'alternate', type: 'text/markdown', href: '/llms.txt', title: 'llms.txt' },
|
|
119
|
+
{ rel: 'alternate' as const, type: 'text/markdown', href: '/llms.txt', title: 'llms.txt' },
|
|
118
120
|
],
|
|
119
121
|
})
|
|
120
122
|
useSeoMeta({
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@michaelthielemann/kestrel",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.6.0",
|
|
4
4
|
"description": "A slim, collection-driven Nuxt 4 CMS meta-layer with a runtime schema engine. Add `extends: ['@michaelthielemann/kestrel']`, define collections, and the database migrates itself.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": "Michael Thielemann <283621694+MichaelThielemann@users.noreply.github.com>",
|
|
@@ -59,27 +59,27 @@
|
|
|
59
59
|
"hash-password": "node scripts/hash-password.mjs"
|
|
60
60
|
},
|
|
61
61
|
"dependencies": {
|
|
62
|
-
"@babel/parser": "^7.
|
|
63
|
-
"@internationalized/date": "^3.12.
|
|
64
|
-
"@tiptap/extension-highlight": "^3.
|
|
65
|
-
"@tiptap/extension-subscript": "^3.
|
|
66
|
-
"@tiptap/extension-superscript": "^3.
|
|
67
|
-
"@tiptap/extension-text-align": "^3.
|
|
68
|
-
"@tiptap/pm": "^3.
|
|
69
|
-
"@tiptap/starter-kit": "^3.
|
|
70
|
-
"@tiptap/vue-3": "^3.
|
|
62
|
+
"@babel/parser": "^7.29.8",
|
|
63
|
+
"@internationalized/date": "^3.12.3",
|
|
64
|
+
"@tiptap/extension-highlight": "^3.29.2",
|
|
65
|
+
"@tiptap/extension-subscript": "^3.29.2",
|
|
66
|
+
"@tiptap/extension-superscript": "^3.29.2",
|
|
67
|
+
"@tiptap/extension-text-align": "^3.29.2",
|
|
68
|
+
"@tiptap/pm": "^3.29.2",
|
|
69
|
+
"@tiptap/starter-kit": "^3.29.2",
|
|
70
|
+
"@tiptap/vue-3": "^3.29.2",
|
|
71
71
|
"aws4fetch": "^1.0.20",
|
|
72
72
|
"better-sqlite3": "^12.11.1",
|
|
73
|
-
"dompurify": "^3.4.
|
|
73
|
+
"dompurify": "^3.4.13",
|
|
74
74
|
"drizzle-orm": "^0.45.2",
|
|
75
75
|
"drizzle-zod": "^0.8.3",
|
|
76
76
|
"file-type": "^22.0.1",
|
|
77
77
|
"jsdom": "^29.1.1",
|
|
78
78
|
"nanoid": "^5.1.16",
|
|
79
|
-
"nuxt": "^4.
|
|
79
|
+
"nuxt": "^4.5.2",
|
|
80
80
|
"reka-ui": "^2.10.1",
|
|
81
|
-
"sanitize-html": "^2.17.
|
|
82
|
-
"sass": "^1.
|
|
81
|
+
"sanitize-html": "^2.17.6",
|
|
82
|
+
"sass": "^1.102.0",
|
|
83
83
|
"sharp": "^0.35.3",
|
|
84
84
|
"thumbhash": "^0.1.1",
|
|
85
85
|
"typescript": "^6.0.3",
|
|
@@ -107,20 +107,20 @@
|
|
|
107
107
|
}
|
|
108
108
|
},
|
|
109
109
|
"devDependencies": {
|
|
110
|
-
"@nuxt/kit": "^4.
|
|
111
|
-
"@nuxt/test-utils": "^
|
|
110
|
+
"@nuxt/kit": "^4.5.2",
|
|
111
|
+
"@nuxt/test-utils": "^4.1.0",
|
|
112
112
|
"@types/better-sqlite3": "^7.6.13",
|
|
113
113
|
"@types/jsdom": "^28.0.3",
|
|
114
114
|
"@types/sanitize-html": "^2.16.1",
|
|
115
|
-
"@vitejs/plugin-vue": "^6.0.
|
|
115
|
+
"@vitejs/plugin-vue": "^6.0.8",
|
|
116
116
|
"@vue/test-utils": "^2.4.11",
|
|
117
117
|
"drizzle-kit": "^0.31.10",
|
|
118
118
|
"h3": "^1.15.11",
|
|
119
|
-
"happy-dom": "^20.
|
|
120
|
-
"playwright-core": "^1.
|
|
121
|
-
"vitest": "^
|
|
119
|
+
"happy-dom": "^20.11.2",
|
|
120
|
+
"playwright-core": "^1.62.1",
|
|
121
|
+
"vitest": "^4.1.10",
|
|
122
122
|
"vue": "3.5.35",
|
|
123
|
-
"vue-router": "^5.
|
|
124
|
-
"vue-tsc": "^3.3.
|
|
123
|
+
"vue-router": "^5.2.0",
|
|
124
|
+
"vue-tsc": "^3.3.9"
|
|
125
125
|
}
|
|
126
126
|
}
|