5
0
mirror of https://github.com/wailsapp/wails.git synced 2025-05-11 06:29:29 +08:00

Fix indentation of sveltekit-ts package.json

This commit is contained in:
Fabio Massaioli 2025-03-13 08:07:40 +01:00 committed by GitHub
parent 3f2db134c2
commit ee9e3973bd
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -1,26 +1,26 @@
{ {
"name": "frontend", "name": "frontend",
"version": "0.0.1", "version": "0.0.1",
"private": true, "private": true,
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite dev", "dev": "vite dev",
"build:dev": "vite build --minify false --mode development", "build:dev": "vite build --minify false --mode development",
"build": "vite build --mode production", "build": "vite build --mode production",
"preview": "vite preview", "preview": "vite preview",
"check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json", "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
"check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch" "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch"
}, },
"dependencies": { "dependencies": {
"@wailsio/runtime": "^3.0.0-alpha.28" "@wailsio/runtime": "^3.0.0-alpha.28"
}, },
"devDependencies": { "devDependencies": {
"@sveltejs/adapter-static": "^3.0.5", "@sveltejs/adapter-static": "^3.0.5",
"@sveltejs/kit": "^2.0.0", "@sveltejs/kit": "^2.0.0",
"@sveltejs/vite-plugin-svelte": "^3.0.0", "@sveltejs/vite-plugin-svelte": "^3.0.0",
"svelte": "^4.2.7", "svelte": "^4.2.7",
"svelte-check": "^4.0.0", "svelte-check": "^4.0.0",
"typescript": "^5.0.0", "typescript": "^5.0.0",
"vite": "^5.0.3" "vite": "^5.0.3"
} }
} }