{
  "name": "cli-tsup-template",
  "type": "module",
  "version": "0.0.0",
  "description": "",
  "author": "",
  "license": "MIT",
  "keywords": [
    "cli"
  ],
  "bin": {
    "hello-cli": "dist/index.js"
  },
  "scripts": {
    "start": "dist/index.js",
    "dev": "tsup --watch --sourcemap",
    "build": "tsup",
    "typecheck": "tsc --noEmit",
    "test": "vitest run",
    "coverage": "vitest run --coverage",
    "commit": "git-cz",
    "lint": "eslint .",
    "release": "bumpp && npm publish",
    "prepare": "simple-git-hooks",
    "prepublishOnly": "npm run build"
  },
  "dependencies": {
    "ora": "^8.1.1"
  },
  "devDependencies": {
    "@hacxy/eslint-config": "^0.0.4",
    "@types/node": "^20.12.5",
    "@vitest/coverage-istanbul": "2.1.8",
    "bumpp": "^9.9.0",
    "commitizen": "^4.3.1",
    "cz-git": "^1.11.0",
    "eslint": "^9.17.0",
    "lint-staged": "^15.2.11",
    "simple-git-hooks": "^2.11.1",
    "tsup": "^8.3.5",
    "typescript": "^5.4.4",
    "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
    }
  }
}
