### Development Commands for Vite TypeScript Library Source: https://github.com/concertypin/liblit/blob/main/AGENTS.md These commands are used for developing and building a vanilla TypeScript library template with Vite. They cover starting a development server, building for production, formatting, linting, and running tests. ```bash # Start development build in watch mode pnpm dev # Build for production (outputs ESM to dist/) pnpm build # Format code pnpm format # Lint code pnpm lint # Run unit tests (Vitest in Node environment) pnpm test ``` -------------------------------- ### Clone the Template Repository Source: https://github.com/concertypin/liblit/blob/main/README.md Use this command to clone the template repository for library development. ```bash git clone https://github.com/templecon/template-typescript-vite ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.