No description
Find a file
2026-02-25 20:44:28 -05:00
.cursor Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
.storybook Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
.vscode Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
graphics-components-src@0ca7b1188d Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
src Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
static Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
.gitignore Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
.gitmodules Init. Configured components as subtree, got Vite processing them, figured out that the Scroll components needed asChild to pass props, Svelte now preprocceses MDX docs with mdsvex(). 2026-02-25 20:15:34 -05:00
.npmrc Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
.prettierignore Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
.prettierrc Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
AGENTS.md Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
bun.lock Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
eslint.config.js Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
package.json Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
pnpm-workspace.yaml Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
README.md Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
svelte.config.js Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
tsconfig.json Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00
vite.config.ts Integrating subtree, hopefully. 2026-02-25 20:44:28 -05:00

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
pnpm dlx sv create --template minimal --types ts --add prettier eslint vitest="usages:component" sveltekit-adapter="adapter:static" devtools-json mdsvex storybook mcp="ide:cursor,vscode+setup:remote" --install pnpm .

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.