UNPKG

create-jtc-starter-kit

Version:
60 lines (39 loc) 959 B
# JTC React Starter Kit Create a new JTC Starter Kit project with a single command. ## Usage ```bash npx create-react-jtc-starter-kit my-app ``` Or with npm: ```bash npm create react-jtc-starter-kit my-app ``` Or with yarn: ```bash yarn create react-jtc-starter-kit my-app ``` ## What's Included This CLI tool creates a new project with: - React 18 with TypeScript - Vite for fast development - Tailwind CSS for styling - ESLint and Prettier configured - TypeScript strict mode - Component structure setup ## Interactive Mode If you don't provide a project name, the CLI will prompt you: ```bash npx create-react-jtc-starter-kit ``` ## Development To work on this CLI locally: 1. Clone the repository 2. Install dependencies: `npm install` 3. Link the package: `npm link` 4. Test the CLI: `create-react-jtc-starter-kit test-app` ## Publishing To publish a new version: 1. Update version in package.json 2. Run `npm publish` ## License MIT