chore(deps): bump all

This commit is contained in:
Philipp Dormann 2024-12-16 17:31:36 +01:00
parent 72ace57cb3
commit b969932582
Signed by: philipp
GPG Key ID: 3BB9ADD52DCA4314
3 changed files with 3506 additions and 3482 deletions

View File

@ -33,35 +33,36 @@
"license:export": "license-exporter --markdown && git stage licenses.md" "license:export": "license-exporter --markdown && git stage licenses.md"
}, },
"devDependencies": { "devDependencies": {
"@odit/license-exporter": "0.0.12", "@odit/license-exporter": "0.2.0",
"@sveltejs/adapter-static": "2.0.2", "@philippdormann/release-it": "^1.0.0",
"@sveltejs/kit": "1.15.7", "@sveltejs/adapter-static": "3.0.6",
"@types/bwip-js": "^3.2.0", "@sveltejs/kit": "2.12.0",
"@typescript-eslint/eslint-plugin": "5.59.0", "@sveltejs/vite-plugin-svelte": "^5.0.2",
"@typescript-eslint/parser": "5.59.0", "@types/bwip-js": "^3.2.3",
"auto-changelog": "2.4.0", "@typescript-eslint/eslint-plugin": "8.18.0",
"autoprefixer": "10.4.14", "@typescript-eslint/parser": "8.18.0",
"eslint": "8.38.0", "auto-changelog": "2.5.0",
"eslint-config-prettier": "8.8.0", "autoprefixer": "10.4.20",
"eslint-plugin-svelte3": "4.0.0", "eslint": "9.17.0",
"postcss": "8.4.22", "eslint-config-prettier": "9.1.0",
"postcss-load-config": "4.0.1", "postcss": "8.4.49",
"prettier": "2.8.7", "postcss-load-config": "6.0.1",
"prettier-plugin-svelte": "2.10.0", "prettier": "3.4.2",
"release-it": "15.10.1", "prettier-plugin-svelte": "3.3.2",
"svelte": "3.58.0", "svelte": "5.14.0",
"svelte-check": "3.2.0", "svelte-check": "4.1.1",
"svelte-preprocess": "5.0.3", "svelte-preprocess": "6.0.3",
"tailwindcss": "3.3.1", "tailwindcss": "3.4.16",
"tslib": "2.5.0", "tslib": "2.8.1",
"typescript": "5.0.4", "typescript": "5.7.2",
"vite": "4.2.2" "vite": "6.0.3"
}, },
"type": "module", "type": "module",
"dependencies": { "dependencies": {
"@fontsource/athiti": "^4.5.10", "@fontsource/athiti": "^5.1.0",
"@odit/lfk-client-js": "1.0.1", "@odit/lfk-client-js": "1.1.3",
"bwip-js": "3.4.0" "bwip-js": "4.5.1",
"eslint-plugin-svelte": "^2.46.1"
}, },
"release-it": { "release-it": {
"git": { "git": {
@ -80,11 +81,5 @@
"hooks": { "hooks": {
"after:bump": "npx auto-changelog --commit-limit false -p -u --hide-credit && npm run license:export && git add CHANGELOG.md && git add licenses.md" "after:bump": "npx auto-changelog --commit-limit false -p -u --hide-credit && npm run license:export && git add CHANGELOG.md && git add licenses.md"
} }
},
"volta": {
"node": "19.9.0"
},
"engines": {
"pnpm": "8"
} }
} }

6927
pnpm-lock.yaml generated

File diff suppressed because it is too large Load Diff

View File

@ -1,13 +1,11 @@
import preprocess from 'svelte-preprocess'; import preprocess from 'svelte-preprocess';
import adapter from '@sveltejs/adapter-static'; import adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */ /** @type {import('@sveltejs/kit').Config} */
const config = { const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors // Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors // for more information about preprocessors
preprocess: [ preprocess: [
vitePreprocess(),
preprocess({ preprocess({
postcss: true postcss: true
}) })