review-copilot
Version:
ReviewCopilot - AI-powered code review assistant with customizable prompts
86 lines • 2.5 kB
JSON
{
"name": "review-copilot",
"version": "0.4.10",
"description": "ReviewCopilot - AI-powered code review assistant with customizable prompts",
"main": "dist/index.js",
"bin": {
"review-copilot": "./dist/cli/index.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"keywords": [
"ai",
"code-review",
"git",
"commit",
"lint",
"openai",
"github",
"gitlab"
],
"author": "Alex",
"license": "MIT",
"dependencies": {
"@gitbeaker/rest": "^42.1.0",
"@octokit/rest": "^20.0.2",
"chalk": "^4.1.2",
"commander": "^12.0.0",
"dotenv": "^16.4.5",
"micromatch": "^4.0.8",
"openai": "^4.28.4",
"ora": "^5.4.1",
"simple-git": "^3.22.0",
"yaml": "^2.4.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/micromatch": "^4.0.9",
"@types/node": "^20.11.24",
"@typescript-eslint/eslint-plugin": "^8.22.0",
"@typescript-eslint/parser": "^8.22.0",
"eslint": "^9.19.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^5.2.3",
"husky": "^9.0.11",
"jest": "^29.7.0",
"lint-staged": "^15.2.2",
"prettier": "^3.2.5",
"standard-version": "^9.5.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
},
"lint-staged": {
"*.{js,ts}": [
"eslint --fix",
"prettier --write"
]
},
"repository": {
"type": "git",
"url": "git+https://github.com/AlexShan2008/review-copilot.git"
},
"bugs": {
"url": "https://github.com/AlexShan2008/review-copilot/issues"
},
"homepage": "https://github.com/AlexShan2008/review-copilot#readme",
"scripts": {
"build": "tsc",
"dev": "ts-node -r dotenv/config src/cli/index.ts",
"test": "jest --config jest.config.cjs",
"test:coverage": "jest --config jest.config.cjs --coverage",
"test:watch": "jest --config jest.config.cjs --watch",
"lint": "eslint 'src/**/*.{js,ts}'",
"format": "prettier --write 'src/**/*.{js,ts}'",
"version": "tsx scripts/sync-version.ts && npm run build",
"release": "standard-version --release-as patch && git push --follow-tags && pnpm publish",
"release:minor": "standard-version --release-as minor && git push --follow-tags && pnpm publish",
"release:major": "standard-version --release-as major && git push --follow-tags && pnpm publish",
"start": "node -r dotenv/config dist/cli/index.js"
}
}