JSPM

  • Created
  • Published
  • Downloads 7
  • Score
    100M100P100Q67542F
  • License ISC

Generador rápido de proyectos con Vite y TypeScript

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-app
bunx vtk-pro my-app
pnpm dlx vtk-pro my-app
yarn dlx vtk-pro my-app

Dependencies

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:

  1. tsconfig.app.json: Typescript configuration file.
  • Add these lines:
  "baseUrl": ".",
  "paths": {
    "@/*": ["src/*"]
  }
  1. 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",
  }