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"
},
"devDependencies": {
"@odit/license-exporter": "0.0.12",
"@sveltejs/adapter-static": "2.0.2",
"@sveltejs/kit": "1.15.7",
"@types/bwip-js": "^3.2.0",
"@typescript-eslint/eslint-plugin": "5.59.0",
"@typescript-eslint/parser": "5.59.0",
"auto-changelog": "2.4.0",
"autoprefixer": "10.4.14",
"eslint": "8.38.0",
"eslint-config-prettier": "8.8.0",
"eslint-plugin-svelte3": "4.0.0",
"postcss": "8.4.22",
"postcss-load-config": "4.0.1",
"prettier": "2.8.7",
"prettier-plugin-svelte": "2.10.0",
"release-it": "15.10.1",
"svelte": "3.58.0",
"svelte-check": "3.2.0",
"svelte-preprocess": "5.0.3",
"tailwindcss": "3.3.1",
"tslib": "2.5.0",
"typescript": "5.0.4",
"vite": "4.2.2"
"@odit/license-exporter": "0.2.0",
"@philippdormann/release-it": "^1.0.0",
"@sveltejs/adapter-static": "3.0.6",
"@sveltejs/kit": "2.12.0",
"@sveltejs/vite-plugin-svelte": "^5.0.2",
"@types/bwip-js": "^3.2.3",
"@typescript-eslint/eslint-plugin": "8.18.0",
"@typescript-eslint/parser": "8.18.0",
"auto-changelog": "2.5.0",
"autoprefixer": "10.4.20",
"eslint": "9.17.0",
"eslint-config-prettier": "9.1.0",
"postcss": "8.4.49",
"postcss-load-config": "6.0.1",
"prettier": "3.4.2",
"prettier-plugin-svelte": "3.3.2",
"svelte": "5.14.0",
"svelte-check": "4.1.1",
"svelte-preprocess": "6.0.3",
"tailwindcss": "3.4.16",
"tslib": "2.8.1",
"typescript": "5.7.2",
"vite": "6.0.3"
},
"type": "module",
"dependencies": {
"@fontsource/athiti": "^4.5.10",
"@odit/lfk-client-js": "1.0.1",
"bwip-js": "3.4.0"
"@fontsource/athiti": "^5.1.0",
"@odit/lfk-client-js": "1.1.3",
"bwip-js": "4.5.1",
"eslint-plugin-svelte": "^2.46.1"
},
"release-it": {
"git": {
@ -80,11 +81,5 @@
"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"
}
},
"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 adapter from '@sveltejs/adapter-static';
import { vitePreprocess } from '@sveltejs/kit/vite';
/** @type {import('@sveltejs/kit').Config} */
const config = {
// Consult https://kit.svelte.dev/docs/integrations#preprocessors
// for more information about preprocessors
preprocess: [
vitePreprocess(),
preprocess({
postcss: true
})