← All components

SvelteKit Base

Minimal SvelteKit project with TypeScript. Provides a foundation for Svelte applications with file-based routing and server-side rendering. Packages pinned to svelte@5.0.0, @sveltejs/kit@2.0.0 (verified 2026-09-06).

Copy the files below, or open this folder on GitHub. Each file is stamped with a limited-use licence, generator and date. SHA-256 is of the published catalog bytes, before the stamp.

id
svelte-base
stack
Next.js
version
1.0.0
compatibility
svelte >=5 <6
requires
env vars
Verified passing · daily buildIntegrity sha256:51f54f3ab6eeec4f

Files (12)

package.json · sha256:51f54f3ab6eeec4f…
/**
 * SvelteKit Package Configuration
 * 
 * This file configures the SvelteKit project with Vite and TypeScript.
 * 
 * Source: https://kit.svelte.dev/docs/introduction
 * Verified: 2026-09-06
 */

{
  "name": "<%= projectName || 'svelte-app' %>",
  "private": true,
  "version": "1.0.0",
  "type": "module",
  "scripts": {
    "dev": "vite dev",
    "build": "vite build",
    "preview": "vite preview",
    "check": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
    "check:watch": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json --watch",
    "typecheck": "svelte-kit sync && svelte-check --tsconfig ./tsconfig.json",
    "lint": "prettier --check . && eslint . --ext .svelte,.ts,.tsx"
  },
  "dependencies": {
    "@sveltejs/kit": "2.0.0"
  },
  "devDependencies": {
    "@sveltejs/adapter-node": "2.0.0",
    "@sveltejs/vite-plugin-svelte": "3.0.0",
    "svelte": "5.0.0",
    "typescript": "5.3.0",
    "vite": "5.0.0"
  }
}