UNPKG

code-review-gpt

Version:

Your AI code reviewer. Improve code quality and catch bugs before you break production

73 lines (72 loc) 1.88 kB
{ "name": "code-review-gpt", "version": "0.8.0", "description": "Your AI code reviewer. Improve code quality and catch bugs before you break production", "bin": { "code-review-gpt": "./dist/index.js" }, "main": "./dist/index.js", "types": "./dist/index.d.ts", "repository": { "type": "git", "url": "https://github.com/mattzcarey/code-review-gpt" }, "scripts": { "start": "bun run ./src/index.ts", "review": "bun run ./src/index.ts review", "configure": "bun run ./src/index.ts configure", "test:llm": "bun run ./src/index.ts test", "test": "bun test", "build": "bun run ./scripts/build.ts", "postbuild": "bun run ./scripts/shebang.ts && chmod +x ./dist/index.js", "publish:build": "bun run build && bun publish --access public", "check": "biome check .", "check:fix": "biome check . --fix", "format": "biome format --write ." }, "keywords": [ "code-review", "review", "chatgpt", "gpt", "gpt3", "openai", "gpt4", "vertexai", "huggingface", "ai", "genai", "llama" ], "author": "Matt Carey", "license": "MIT", "dependencies": { "@actions/github": "^5.1.1", "@gitbeaker/rest": "^39.10.2", "@inquirer/prompts": "^3.0.4", "@inquirer/rawlist": "^1.2.9", "@langchain/core": "^0.3.29", "@langchain/openai": "^0.3.17", "azure-devops-node-api": "^12.3.0", "dotenv": "^16.3.1", "langchain": "^0.3.11", "octokit": "^3.1.0", "picocolors": "^1.1.1", "tinyglobby": "^0.2.10", "tslog": "^4.8.2", "yargs": "^17.7.2", "zod": "^3.24.1" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@types/bun": "^1.1.16", "@types/inquirer": "^9.0.3", "@types/yargs": "^17.0.33", "dotenv-cli": "^7.2.1", "npm-dts": "^1.3.12", "typescript": "^5.1.6" }, "files": [ "dist/*" ] }