### Development Server Source: https://github.com/v1b3x0r/world-interpreter-engine/blob/feat/world-log-editor/CLAUDE.md Starts the development server using Vite for live preview and hot-reloading. ```bash npm run dev ``` -------------------------------- ### Production Build Source: https://github.com/v1b3x0r/world-interpreter-engine/blob/feat/world-log-editor/CLAUDE.md Creates a production-ready build of the SvelteKit application. ```bash npm run build ``` -------------------------------- ### Preview Production Build Source: https://github.com/v1b3x0r/world-interpreter-engine/blob/feat/world-log-editor/CLAUDE.md Previews the production build locally to ensure it functions as expected. ```bash npm run preview ``` -------------------------------- ### All Tests Source: https://github.com/v1b3x0r/world-interpreter-engine/blob/feat/world-log-editor/CLAUDE.md Runs all configured tests, including both unit and end-to-end tests. ```bash npm run test ``` -------------------------------- ### Code Formatting Source: https://github.com/v1b3x0r/world-interpreter-engine/blob/feat/world-log-editor/CLAUDE.md Automatically formats code to adhere to Prettier's style guidelines. ```bash npm run format ``` -------------------------------- ### Unit Tests (Single Run) Source: https://github.com/v1b3x0r/world-interpreter-engine/blob/feat/world-log-editor/CLAUDE.md Executes Vitest unit tests once and exits. ```bash npm run test:unit -- --run ``` -------------------------------- ### Unit Tests (Watch Mode) Source: https://github.com/v1b3x0r/world-interpreter-engine/blob/feat/world-log-editor/CLAUDE.md Runs Vitest unit tests in watch mode, automatically re-running tests on code changes. ```bash npm run test:unit ``` -------------------------------- ### Type Checking Source: https://github.com/v1b3x0r/world-interpreter-engine/blob/feat/world-log-editor/CLAUDE.md Runs svelte-check to perform static type checking on Svelte components. ```bash npm run check ``` -------------------------------- ### Code Linting Source: https://github.com/v1b3x0r/world-interpreter-engine/blob/feat/world-log-editor/CLAUDE.md Checks code style and potential errors using Prettier and ESLint. ```bash npm run lint ``` -------------------------------- ### End-to-End Tests Source: https://github.com/v1b3x0r/world-interpreter-engine/blob/feat/world-log-editor/CLAUDE.md Executes Playwright end-to-end tests for the application. ```bash npm run test:e2e ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.