package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "czg",
  3. "version": "1.6.1",
  4. "description": "Interactive Commitizen CLI that generate standardized git commit message",
  5. "keywords": [
  6. "openai",
  7. "commit",
  8. "commit CLI",
  9. "commit message",
  10. "commitizen",
  11. "commitizen-cli",
  12. "cli",
  13. "cz-git",
  14. "cz-customizable"
  15. ],
  16. "homepage": "https://cz-git.qbb.sh/cli/",
  17. "bugs": {
  18. "url": "https://github.com/Zhengqbbb/cz-git/issues"
  19. },
  20. "repository": {
  21. "type": "git",
  22. "url": "https://github.com/Zhengqbbb/cz-git",
  23. "directory": "packages/cli"
  24. },
  25. "license": "MIT",
  26. "author": "Zhengqbbb <zhengqbbb@gmail.com> (https://github.com/Zhengqbbb)",
  27. "bin": {
  28. "czg": "bin/index.js",
  29. "git-czg": "bin/index.js"
  30. },
  31. "files": [
  32. "bin",
  33. "lib"
  34. ],
  35. "devDependencies": {
  36. "cachedir": "^2.3.0",
  37. "dedent": "^0.7.0",
  38. "fs-extra": "^11.1.0",
  39. "inquirer": "8.2.4",
  40. "minimist": "^1.2.8",
  41. "rimraf": "3.0.2",
  42. "cz-git": "1.6.1"
  43. },
  44. "scripts": {
  45. "build": "pnpm clean && tsup",
  46. "clean": "rimraf '*.tsbuildinfo' lib",
  47. "release:changelog": "conventional-changelog -p angular -i CHANGELOG.md -s"
  48. }
  49. }