No Description

Thomas Zhang 59e6583c51 init: project settings 3 months ago
.vscode 4ddbf475af init: sveltekit 2 months ago
src 4ddbf475af init: sveltekit 2 months ago
static 4ddbf475af init: sveltekit 2 months ago
.gitignore 4ddbf475af init: sveltekit 2 months ago
.mcp.json 4ddbf475af init: sveltekit 2 months ago
.npmrc 4ddbf475af init: sveltekit 2 months ago
.prettierignore 4ddbf475af init: sveltekit 2 months ago
.prettierrc 59e6583c51 init: project settings 1 month ago
AGENTS.md 59e6583c51 init: project settings 1 month ago
CLAUDE.md 59e6583c51 init: project settings 1 month ago
LICENSE 38cfaef0e9 init: add license 2 months ago
README.md 4ddbf475af init: sveltekit 2 months ago
eslint.config.js 59e6583c51 init: project settings 1 month ago
package-lock.json 59e6583c51 init: project settings 1 month ago
package.json 59e6583c51 init: project settings 1 month ago
playwright.config.ts 4ddbf475af init: sveltekit 2 months ago
svelte.config.js 4ddbf475af init: sveltekit 2 months ago
tsconfig.json 4ddbf475af init: sveltekit 2 months ago
vite.config.ts 4ddbf475af init: sveltekit 2 months ago

README.md

sv

Everything you need to build a Svelte project, powered by sv.

Creating a project

If you're seeing this, you've probably already done this step. Congrats!

# create a new project
npx sv create my-app

To recreate this project with the same configuration:

# recreate this project
npx sv@0.12.7 create --template minimal --types ts --add prettier eslint tailwindcss="plugins:typography,forms" vitest="usages:unit,component" playwright mcp="ide:claude-code+setup:local" --install npm web

Developing

Once you've created a project and installed dependencies with npm install (or pnpm install or yarn), start a development server:

npm run dev

# or start the server and open the app in a new browser tab
npm run dev -- --open

Building

To create a production version of your app:

npm run build

You can preview the production build with npm run preview.

To deploy your app, you may need to install an adapter for your target environment.