{
  "name": "create-react-swc-ts-extended",
  "version": "1.0.1",
  "description": "CLI to create a React boilerplate with Vite + SWC, React 19, TypeScript, Vitest, Testing Library, TailwindCSS 4, Eslint and Prettier, Husky and lint-staged",
  "type": "module",
  "bin": {
    "create-react-swc-ts-extended": "dist/index.js"
  },
  "files": [
    "dist",
    "template"
  ],
  "keywords": [
    "cli",
    "react",
    "vite",
    "swc",
    "typescript",
    "tailwindcss",
    "template"
  ],
  "author": {
    "email": "caymo.abesuni@gmail.com",
    "name": "Abe Suni M. Caymo",
    "url": "https://github.com/abetoots"
  },
  "license": "MIT",
  "dependencies": {
    "@inquirer/prompts": "^3.0.0",
    "chalk": "^5.3.0",
    "execa": "^8.0.1",
    "fs-extra": "^11.3.0",
    "minimist": "^1.2.8",
    "ora": "^7.0.0"
  },
  "devDependencies": {
    "@eslint/compat": "^1.2.0",
    "@satoshibits/eslint-config": "^2.0.7",
    "@types/fs-extra": "^11.0.4",
    "@types/minimist": "^1.2.5",
    "@types/node": "^22.13.8",
    "@typescript-eslint/utils": "^8.8.1",
    "@vitest/ui": "3.0.7",
    "eslint": "^9.12.0",
    "jiti": "^2.3.3",
    "lint-staged": "^15.2.10",
    "tsup": "^8.0.0",
    "typescript": "^5.8.2",
    "typescript-eslint": "^8.8.1",
    "vitest": "^3.0.7"
  },
  "publishConfig": {
    "access": "public"
  },
  "engines": {
    "node": ">=16.0.0"
  },
  "scripts": {
    "build": "tsup src/index.ts --format esm --clean",
    "dev": "tsup src/index.ts --format esm --watch",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "test:watch": "vitest",
    "test:coverage": "vitest run --coverage",
    "local-test": "./test-cli.sh",
    "package-test": "./test-package.sh",
    "pre-commit": "pnpm exec lint-staged -c ./.lintstagedrc.mjs"
  }
}