{
  "name": "@lzwme/git-helper",
  "version": "1.7.3",
  "description": "一个简单的 git 提交等操作的辅助小工具",
  "main": "esm/index.js",
  "browser": "esm/index.js",
  "typings": "esm/index.d.ts",
  "type": "module",
  "bin": {
    "githelper": "bin/githelper.js",
    "gh": "bin/githelper.js"
  },
  "repository": "https://github.com/lzwme/git-helper.git",
  "author": {
    "name": "renxia",
    "email": "lzwy0820@qq.com",
    "url": "https://lzw.me"
  },
  "license": "MIT",
  "private": false,
  "engines": {
    "node": ">=14.18"
  },
  "keywords": [
    "git",
    "git helper",
    "git commit"
  ],
  "publishConfig": {
    "access": "public",
    "registry": "https://registry.npmjs.com"
  },
  "scripts": {
    "prepare": "husky || true",
    "dev": "npm run watch:build",
    "start": "npm run watch",
    "build": "run-s clean && run-p build:*",
    "build:esm": "tsc -p tsconfig.module.json",
    "fix": "run-s fix:*",
    "fix:prettier": "prettier \"src/**/*.ts\" --write",
    "fix:lint": "eslint src/**/*.ts --fix",
    "test": "run-s test:*",
    "test:lint": "eslint src/**/*.ts",
    "test:prettier": "prettier \"src/**/*.ts\" --list-different",
    "test:unit": "npm run cov",
    "watch": "run-s clean && run-p \"watch:build\" \"watch:test\"",
    "watch:build": "npm run build:esm -- -w",
    "watch:test": "pnpm jest --watch",
    "cov": "pnpm jest --coverage",
    "doc": "typedoc src/ --exclude **/*.spec.ts --out docs",
    "version": "standard-version",
    "prepare-release": "run-s build test doc:html version",
    "release": "run-s test build doc",
    "clean": "node scripts/rmdir.js ./esm ./docs"
  },
  "devDependencies": {
    "@eslint/js": "^9.24.0",
    "@jest/types": "^29.6.3",
    "@lzwme/fed-lint-helper": "^2.6.6",
    "@types/eslint": "^9.6.1",
    "@types/jest": "^29.5.14",
    "@types/node": "^22.14.0",
    "@typescript-eslint/eslint-plugin": "^8.29.0",
    "@typescript-eslint/parser": "^8.29.0",
    "eslint": "^9.24.0",
    "eslint-config-prettier": "^10.1.1",
    "eslint-plugin-prettier": "^5.2.6",
    "husky": "^9.1.7",
    "jest": "^29.7.0",
    "npm-run-all": "^4.1.5",
    "prettier": "^3.5.3",
    "standard-version": "^9.5.0",
    "ts-jest": "^29.3.1",
    "ts-node": "^10.9.2",
    "typedoc": "^0.28.1",
    "typescript": "^5.8.3",
    "typescript-eslint": "^8.29.0"
  },
  "dependencies": {
    "@lzwme/fe-utils": "^1.8.2",
    "commander": "^13.1.0",
    "console-log-colors": "^0.5.0"
  }
}
