vtk-pro
v1.2.3
Published
Generador rápido de proyectos con Vite y TypeScript
Maintainers
Readme
vtk-pro
A CLI tool to create a new Vite Typescript project with React.
Installation
For the best experience, use npx to run the CLI tool.
npx vtk-pro my-appbunx vtk-pro my-apppnpm dlx vtk-pro my-appyarn dlx vtk-pro my-appDependencies
This project uses the following dependencies:
- Vite Typescript 6.2
- React 19
- Kamey-Components
- TailwindCSS 4.0.0
- React Router 7
- React Query
- Axios
- Ant Design
- clsx
- dayjs
- env-cmd
- React-Icons
- Framer Motion
- Zustand
Getting Started
Once the project is installed, the following files need to be configured:
- tsconfig.app.json: Typescript configuration file.
- Add these lines:
"baseUrl": ".",
"paths": {
"@/*": ["src/*"]
}- package.json: NPM configuration file.
- Add these lines:
"scripts": {
"build:qa": "env-cmd -f .env.qa vite build",
"build:prod": "env-cmd -f .env.prod vite build",
}