{
  "name": "@4s1/conventional-commit-creator",
  "version": "3.19.0",
  "description": "Conventional Commit Creator",
  "keywords": [
    "conventional commit",
    "4s1"
  ],
  "bugs": {
    "url": "https://codeberg.org/4s1/conventional-commit-creator/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://codeberg.org/4s1/conventional-commit-creator.git"
  },
  "license": "MIT",
  "author": "Steffen <steffen@4s1.de>",
  "type": "module",
  "exports": "./dist/index.js",
  "main": "./dist/index.js",
  "typings": "./dist/index.d.ts",
  "bin": {
    "ccc": "./dist/index.js",
    "conventional-commit-creator": "./dist/index.js"
  },
  "files": [
    "dist/"
  ],
  "prettier": "@4s1/eslint-config",
  "dependencies": {
    "@inquirer/confirm": "6.0.8",
    "@inquirer/input": "5.0.8",
    "@inquirer/select": "5.1.0"
  },
  "devDependencies": {
    "@4s1/eslint-config": "9.3.0",
    "@4s1/ts-config": "10.0.0",
    "@types/node": "24.10.11",
    "@types/prompts": "2.4.9",
    "eslint": "10.0.3",
    "prettier": "3.8.1",
    "tsx": "4.21.0",
    "typescript": "5.9.3"
  },
  "publishConfig": {
    "access": "public"
  },
  "scripts": {
    "build": "rm -rf dist && tsc",
    "build:dev": "rm -rf dist && tsc --project tsconfig.dev.json",
    "format": "prettier --write .",
    "lbt": "pnpm run lint && pnpm run build && pnpm run test",
    "lint": "eslint src/ && prettier --check .",
    "start": "node dist/index.js",
    "start:dev": "tsx src/index.ts",
    "test": "node --test --import tsx/esm \"./src/**/*.spec.ts\"",
    "test:watch": "pnpm run test --watch",
    "preversion": "pnpm run lbt",
    "postversion": "git push && git push origin tag v$npm_package_version",
    "lint:fix": "eslint --fix src/ && prettier --write ."
  }
}