{
  "name": "create-classic-vite-cli",
  "version": "0.3.0",
  "type": "module",
  "license": "MIT",
  "homepage": "https://github.com/Ashish-simpleCoder/create-classic-vite-cli",
  "author": "Ashish-simpleCoder",
  "publishConfig": {
    "access": "public",
    "provenance": true
  },
  "bin": {
    "create-classic-vite-cli": "index.js"
  },
  "files": [
    "index.js",
    "template-*",
    "dist"
  ],
  "engines": {
    "node": ">=16.14.0",
    "pnpm": ">=8.12.0"
  },
  "keywords": [
    "react-app",
    "tailwind + vite"
  ],
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Ashish-simpleCoder/create-classic-vite-cli"
  },
  "bugs": {
    "url": "https://github.com/Ashish-simpleCoder/create-classic-vite-cli/issues"
  },
  "devDependencies": {
    "@changesets/cli": "^2.26.1",
    "@commitlint/cli": "^17.6.7",
    "@commitlint/config-conventional": "^17.6.7",
    "@types/cross-spawn": "^6.0.2",
    "@types/fs-extra": "^11.0.1",
    "@types/minimist": "^1.2.2",
    "@types/node": "^18.16.19",
    "@types/prompts": "^2.4.4",
    "cross-spawn": "^7.0.3",
    "execa": "^7.1.1",
    "fs-extra": "^11.1.1",
    "husky": "^8.0.3",
    "kolorist": "^1.8.0",
    "lint-staged": "^13.2.3",
    "minimist": "^1.2.8",
    "prettier": "^2.8.8",
    "pretty-quick": "^3.1.3",
    "prompts": "^2.4.2",
    "unbuild": "^1.2.1",
    "vitest": "^0.33.0"
  },
  "commitlint": {
    "extends": [
      "@commitlint/config-conventional"
    ],
    "rules": {
      "type-enum": [
        2,
        "always",
        [
          "build",
          "chore",
          "ci",
          "docs",
          "feat",
          "fix",
          "perf",
          "refactor",
          "revert",
          "style",
          "test"
        ]
      ]
    }
  },
  "packageManager": "pnpm@8.12.0",
  "prettier": {
    "arrowParens": "always",
    "printWidth": 120,
    "semi": false,
    "endOfLine": "lf",
    "singleQuote": true,
    "tabWidth": 3,
    "jsxSingleQuote": true,
    "trailingComma": "es5"
  },
  "scripts": {
    "dev": "unbuild --stub",
    "build": "unbuild",
    "type-check": "tsc --noEmit",
    "test": "vitest run",
    "cs": "pnpm changeset",
    "release": "changeset publish",
    "format": "prettier --write . --cache"
  }
}