{
  "name": "defts",
  "type": "module",
  "version": "0.0.1",
  "description": "Create a project with TypeScript as the default language.",
  "author": {
    "name": "hacxy",
    "email": "hacxy.js@outlook.com"
  },
  "license": "MIT",
  "keywords": [
    "cli",
    "create-typescript-project"
  ],
  "bin": {
    "defts": "index.js",
    "create-defts": "index.js"
  },
  "files": [
    "dist",
    "index.js",
    "templates"
  ],
  "engines": {
    "node": "^18.0.0 || >=20.0.0"
  },
  "scripts": {
    "start": "node index.js",
    "dev": "unbuild --stub",
    "build": "unbuild",
    "build:out": "tsc -p tsconfig.build.json",
    "commit": "git-cz",
    "typecheck": "tsc --noEmit",
    "release": "bumpp && npm publish",
    "lint": "eslint .",
    "prepare": "simple-git-hooks",
    "prepublishOnly": "npm run sync && npm run build",
    "test": "vitest run",
    "coverage": "vitest run --coverage",
    "sync": "node scripts/utils/sync-template.mjs"
  },
  "dependencies": {
    "@inquirer/prompts": "^7.2.0",
    "consola": "^3.2.3",
    "kolorist": "^1.8.0",
    "minimist": "^1.2.8",
    "ora": "^8.1.1"
  },
  "devDependencies": {
    "@hacxy/eslint-config": "^0.0.4",
    "@types/minimist": "^1.2.5",
    "@types/node": "^20.12.5",
    "@vitest/coverage-istanbul": "2.1.8",
    "bumpp": "^9.9.0",
    "commitizen": "^4.3.1",
    "cz-git": "^1.11.0",
    "degit": "^2.8.4",
    "eslint": "^9.16.0",
    "lint-staged": "^15.2.11",
    "simple-git-hooks": "^2.11.1",
    "typescript": "^5.7.2",
    "unbuild": "^2.0.0",
    "vitest": "^2.1.8"
  },
  "simple-git-hooks": {
    "pre-commit": "npx lint-staged",
    "commit-msg": "node scripts/git-hooks/commit-msg.mjs"
  },
  "lint-staged": {
    "*": [
      "eslint --fix"
    ]
  },
  "config": {
    "commitizen": {
      "path": "node_modules/cz-git",
      "useEmoji": false
    }
  }
}
