UNPKG

code-review-gpt

Version:

an extensible code review agent

75 lines (74 loc) 1.87 kB
{ "name": "code-review-gpt", "version": "0.9.0", "description": "an extensible code review agent", "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:e2e": "bun test e2e", "test:unit": "bun test review configure common", "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", "check:fix:unsafe": "biome check . --unsafe --fix" }, "keywords": [ "code-review", "review", "chatgpt", "gpt", "openai", "anthropic", "grok", "perplexity", "gpt-4.1", "vertexai", "huggingface", "ai", "genai", "llama", "sonnet" ], "author": "Matt Carey", "license": "MIT", "dependencies": { "@actions/github": "^5.1.1", "@ai-sdk/anthropic": "^1.2.10", "@ai-sdk/google": "^1.2.11", "@ai-sdk/openai": "^1.3.12", "@gitbeaker/rest": "^39.10.2", "@inquirer/prompts": "^3.0.4", "ai": "^4.3.6", "azure-devops-node-api": "^12.3.0", "dotenv": "^16.3.1", "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/yargs": "^17.0.33", "autoevals": "^0.0.127", "npm-dts": "^1.3.12", "typescript": "^5.1.6" }, "files": [ "dist/*" ] }