chore: ⬆️ Upgrade Nuxt to 3.14

This commit is contained in:
Jesse Wierzbinski 2024-11-04 21:22:20 +01:00
parent 343765a331
commit 4f8cbe7a96
No known key found for this signature in database
2 changed files with 77 additions and 76 deletions

BIN
bun.lockb

Binary file not shown.

View file

@ -1,78 +1,79 @@
{ {
"name": "versia-fe", "name": "versia-fe",
"private": true, "private": true,
"type": "module", "type": "module",
"license": "AGPL-3.0", "license": "AGPL-3.0",
"author": { "author": {
"email": "contact@cpluspatch.com", "email": "contact@cpluspatch.com",
"name": "CPlusPatch", "name": "CPlusPatch",
"url": "https://cpluspatch.com" "url": "https://cpluspatch.com"
}, },
"maintainers": [ "maintainers": [
{ {
"email": "contact@cpluspatch.com", "email": "contact@cpluspatch.com",
"name": "CPlusPatch", "name": "CPlusPatch",
"url": "https://cpluspatch.com" "url": "https://cpluspatch.com"
} }
], ],
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/versia-pub/frontend.git" "url": "git+https://github.com/versia-pub/frontend.git"
}, },
"scripts": { "scripts": {
"build": "nuxt build", "build": "nuxt build",
"dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 bun --bun nuxt dev --https --https.cert config/versia-fe.localhost.pem --https.key config/versia-fe.localhost-key.pem --host versia-fe.localhost", "dev": "NODE_TLS_REJECT_UNAUTHORIZED=0 bun --bun nuxt dev --https --https.cert config/versia-fe.localhost.pem --https.key config/versia-fe.localhost-key.pem --host versia-fe.localhost",
"generate": "nuxt generate", "generate": "nuxt generate",
"preview": "nuxt preview", "preview": "nuxt preview",
"postinstall": "nuxt prepare", "postinstall": "nuxt prepare",
"lint": "bunx @biomejs/biome check .", "lint": "bunx @biomejs/biome check .",
"check": "bunx tsc -p ." "check": "bunx tsc -p ."
}, },
"dependencies": { "dependencies": {
"@ark-ui/vue": "^4.2.0", "@ark-ui/vue": "^4.2.0",
"@nuxt/fonts": "^0.10.2", "@nuxt/fonts": "^0.10.2",
"@tailwindcss/typography": "^0.5.15", "@tailwindcss/typography": "^0.5.15",
"@vee-validate/nuxt": "^4.14.6", "@vee-validate/nuxt": "^4.14.6",
"@vee-validate/zod": "^4.14.6", "@vee-validate/zod": "^4.14.6",
"@versia/client": "^0.1.0", "@versia/client": "^0.1.0",
"@vite-pwa/nuxt": "^0.10.6", "@vite-pwa/nuxt": "^0.10.6",
"@vueuse/core": "^11.2.0", "@vueuse/core": "^11.2.0",
"@vueuse/nuxt": "^11.2.0", "@vueuse/nuxt": "^11.2.0",
"c12": "^2.0.1", "c12": "^2.0.1",
"fastest-levenshtein": "^1.0.16", "fastest-levenshtein": "^1.0.16",
"html-to-text": "^9.0.5", "html-to-text": "^9.0.5",
"iconify-icon": "^2.1.0", "iconify-icon": "^2.1.0",
"magic-regexp": "^0.8.0", "magic-regexp": "^0.8.0",
"mitt": "^3.0.1", "mitt": "^3.0.1",
"nanoid": "^5.0.8", "nanoid": "^5.0.8",
"nuxt": "^3.13.2", "nuxt": "^3.14.0",
"nuxt-headlessui": "^1.2.0", "nuxt-headlessui": "^1.2.0",
"nuxt-security": "^2.0.0", "nuxt-security": "^2.0.0",
"nuxt-shiki": "^0.3.0", "nuxt-shiki": "^0.3.0",
"overlayscrollbars": "^2.10.0", "overlayscrollbars": "^2.10.0",
"overlayscrollbars-vue": "^0.5.9", "overlayscrollbars-vue": "^0.5.9",
"shiki": "^1.22.2", "shiki": "^1.22.2",
"vue": "^3.5.12", "vue": "^3.5.12",
"vue-router": "^4.4.5", "vue-router": "^4.4.5",
"zod": "^3.23.8" "zod": "^3.23.8"
}, },
"devDependencies": { "devDependencies": {
"@biomejs/biome": "^1.9.4", "@biomejs/biome": "^1.9.4",
"@nuxtjs/seo": "^2.0.0-rc.23", "@nuxtjs/seo": "^2.0.0-rc.23",
"@nuxtjs/tailwindcss": "^6.12.2", "@nuxtjs/tailwindcss": "^6.12.2",
"@tailwindcss/forms": "^0.5.9", "@tailwindcss/forms": "^0.5.9",
"@types/html-to-text": "^9.0.4", "@types/html-to-text": "^9.0.4",
"@vue-email/nuxt": "^0.8.19", "@vue-email/nuxt": "^0.8.19",
"typescript": "^5.6.3", "typescript": "^5.6.3",
"vue-tsc": "^2.1.10" "vue-tsc": "^2.1.10"
}, },
"trustedDependencies": [ "trustedDependencies": [
"@biomejs/biome", "@biomejs/biome",
"@fortawesome/fontawesome-common-types", "@fortawesome/fontawesome-common-types",
"@fortawesome/free-regular-svg-icons", "@fortawesome/free-regular-svg-icons",
"@fortawesome/free-solid-svg-icons", "@fortawesome/free-solid-svg-icons",
"esbuild", "@parcel/watcher",
"json-editor-vue", "esbuild",
"vue-demi" "json-editor-vue",
] "vue-demi"
]
} }