feat: add npm server script

This commit is contained in:
snusxd
2026-02-26 17:44:07 +03:00
parent 15ff9418d7
commit 49dd9891a5

View File

@@ -5,6 +5,7 @@
"type": "module", "type": "module",
"scripts": { "scripts": {
"dev": "vite", "dev": "vite",
"srv-dev": "vite --host 0.0.0.0 --port 5173",
"build": "vite build", "build": "vite build",
"preview": "vite preview", "preview": "vite preview",
"check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json" "check": "svelte-check --tsconfig ./tsconfig.app.json && tsc -p tsconfig.node.json"
@@ -18,4 +19,4 @@
"typescript": "~5.9.3", "typescript": "~5.9.3",
"vite": "^7.3.1" "vite": "^7.3.1"
} }
} }