Package Exports
- vtk-pro
- vtk-pro/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (vtk-pro) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
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",
}