55 lines
1.1 KiB
JSON
55 lines
1.1 KiB
JSON
{
|
|
"name": "aicommits",
|
|
"version": "0.0.0-semantic-release",
|
|
"description": "Writes your git commit messages for you with AI",
|
|
"keywords": [
|
|
"ai",
|
|
"git",
|
|
"commit"
|
|
],
|
|
"license": "MIT",
|
|
"repository": "Nutlope/aicommits",
|
|
"author": "Hassan El Mghari (@nutlope)",
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"bin": "dist/cli.mjs",
|
|
"scripts": {
|
|
"prepare": "simple-git-hooks",
|
|
"build": "pkgroll --minify",
|
|
"lint": "eslint --cache .",
|
|
"type-check": "tsc",
|
|
"prepack": "pnpm build"
|
|
},
|
|
"simple-git-hooks": {
|
|
"pre-commit": "pnpm lint-staged"
|
|
},
|
|
"lint-staged": {
|
|
"*.ts": "eslint --cache"
|
|
},
|
|
"devDependencies": {
|
|
"@clack/prompts": "^0.2.2",
|
|
"@pvtnbr/eslint-config": "^0.33.0",
|
|
"@types/ini": "^1.3.31",
|
|
"@types/inquirer": "^9.0.3",
|
|
"@types/node": "^18.13.0",
|
|
"cleye": "^1.3.2",
|
|
"eslint": "^8.34.0",
|
|
"execa": "^7.0.0",
|
|
"ini": "^3.0.1",
|
|
"kolorist": "^1.7.0",
|
|
"lint-staged": "^13.1.2",
|
|
"openai": "^3.1.0",
|
|
"pkgroll": "^1.9.0",
|
|
"simple-git-hooks": "^2.8.1",
|
|
"typescript": "^4.9.5"
|
|
},
|
|
"eslintConfig": {
|
|
"extends": "@pvtnbr"
|
|
},
|
|
"release": {
|
|
"branches": ["main"]
|
|
}
|
|
}
|