incize
Version:
AI Commit Copilot for Power Developers
70 lines (69 loc) • 1.58 kB
JSON
{
"name": "incize",
"version": "0.2.1",
"description": "AI Commit Copilot for Power Developers",
"main": "dist/cli/index.js",
"bin": {
"incize": "dist/cli/index.js"
},
"scripts": {
"dev": "tsc --watch",
"build": "tsc -p tsconfig.cli.json",
"test": "jest",
"test:watch": "jest --watch",
"type-check": "tsc --noEmit",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"clean": "rm -rf dist",
"prepublishOnly": "npm run clean && npm run build"
},
"keywords": [
"git",
"ai",
"commit",
"cli",
"developer-tools",
"code-review",
"git-hooks",
"commit-messages"
],
"author": "Insize Team",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/incize/incize.git"
},
"bugs": {
"url": "https://github.com/incize/incize/issues"
},
"homepage": "https://incize.dev",
"dependencies": {
"@anthropic-ai/sdk": "^0.58.0",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"date-fns": "^2.30.0",
"openai": "^4.20.1",
"ora": "^7.0.1",
"simple-git": "^3.22.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.8",
"@types/node": "^20.10.0",
"@typescript-eslint/eslint-plugin": "^6.13.0",
"@typescript-eslint/parser": "^6.13.0",
"eslint": "^8.54.0",
"jest": "^29.7.0",
"ts-jest": "^29.1.1",
"typescript": "^5.3.0"
},
"engines": {
"node": ">=18.0.0"
},
"files": [
"dist/cli/**/*",
"dist/core/**/*",
"dist/types/**/*",
"README.md"
]
}