No description
Find a file
2026-06-18 17:34:06 +02:00
src feat: scaffold SvelteKit runtime 2026-06-18 17:29:01 +02:00
.gitignore feat: scaffold SvelteKit runtime 2026-06-18 17:29:01 +02:00
bun.lock feat: scaffold SvelteKit runtime 2026-06-18 17:29:01 +02:00
package.json feat: scaffold SvelteKit runtime 2026-06-18 17:29:01 +02:00
README.md feat: scaffold SvelteKit runtime 2026-06-18 17:29:01 +02:00
svelte.config.js feat: scaffold SvelteKit runtime 2026-06-18 17:29:01 +02:00
tsconfig.json feat: scaffold SvelteKit runtime 2026-06-18 17:29:01 +02:00
vite.config.ts feat: scaffold SvelteKit runtime 2026-06-18 17:29:01 +02:00

Dimension Lab Website

Standalone SvelteKit runtime for the Dimension Lab system overview dashboard.

This project is not a Homepage customization and does not depend on Homepage runtime, frontend code, or configuration. The dashboard will be model-driven: the reusable renderer stays content-free, while environment-specific data lives in validated dashboard model state.

Development

npm install
npm run dev

The current workspace has Bun available, so local verification can also use:

bun install
bun run dev

Scripts

  • npm run dev: start the local development server.
  • npm run check: run Svelte and TypeScript checks.
  • npm run build: build the production app.
  • npm run preview: preview the production build.

Runtime Shape

The first deployment target is a Node/container-friendly SvelteKit build. Later issues add the versioned dashboard model, SQLite persistence, component system, Storybook, seed data, and rendering pipeline.