mirror of
https://github.com/di-sukharev/opencommit.git
synced 2026-01-12 07:08:12 -05:00
75 lines
1.7 KiB
JSON
75 lines
1.7 KiB
JSON
{
|
|
"name": "opencommit",
|
|
"version": "2.0.1",
|
|
"description": "GPT CLI to auto-generate impressive commits in 1 second. Killing lame commits with AI 🤯🔫",
|
|
"keywords": [
|
|
"git",
|
|
"chatgpt",
|
|
"gpt",
|
|
"ai",
|
|
"openai",
|
|
"opencommit",
|
|
"aicommit",
|
|
"aicommits",
|
|
"gptcommit",
|
|
"commit"
|
|
],
|
|
"main": "cli.js",
|
|
"bin": {
|
|
"opencommit": "./out/cli.cjs",
|
|
"oc": "./out/cli.cjs",
|
|
"oco": "./out/cli.cjs"
|
|
},
|
|
"repository": {
|
|
"url": "https://github.com/di-sukharev/opencommit"
|
|
},
|
|
"type": "module",
|
|
"author": "https://github.com/di-sukharev",
|
|
"license": "MIT",
|
|
"files": [
|
|
"out/**/*"
|
|
],
|
|
"release": {
|
|
"branches": [
|
|
"master"
|
|
]
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"scripts": {
|
|
"watch": "npm run -S build -- --sourcemap --watch",
|
|
"start": "node ./out/cli.cjs",
|
|
"dev": "ts-node ./src/cli.ts",
|
|
"build": "rimraf out && node esbuild.config.js",
|
|
"deploy": "npm run build && npm version patch && npm publish --tag latest",
|
|
"lint": "eslint src --ext ts && tsc --noEmit",
|
|
"format": "prettier --write src"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ini": "^1.3.31",
|
|
"@types/inquirer": "^9.0.3",
|
|
"@types/node": "^16.18.14",
|
|
"@typescript-eslint/eslint-plugin": "^5.45.0",
|
|
"@typescript-eslint/parser": "^5.45.0",
|
|
"dotenv": "^16.0.3",
|
|
"esbuild": "^0.15.18",
|
|
"eslint": "^8.28.0",
|
|
"prettier": "^2.8.4",
|
|
"ts-node": "^10.9.1",
|
|
"typescript": "^4.9.3"
|
|
},
|
|
"dependencies": {
|
|
"@clack/prompts": "^0.6.1",
|
|
"@dqbd/tiktoken": "^1.0.2",
|
|
"axios": "^1.3.4",
|
|
"chalk": "^5.2.0",
|
|
"cleye": "^1.3.2",
|
|
"execa": "^7.0.0",
|
|
"ignore": "^5.2.4",
|
|
"ini": "^3.0.1",
|
|
"inquirer": "^9.1.4",
|
|
"openai": "^3.2.1"
|
|
}
|
|
}
|