mirror of
https://github.com/pacnpal/Claude-code-review.git
synced 2025-12-19 20:01:05 -05:00
29 lines
585 B
JSON
29 lines
585 B
JSON
{
|
|
"name": "claude-code-review-action",
|
|
"version": "1.0.0",
|
|
"description": "GitHub Action for code review using Claude",
|
|
"main": "action.js",
|
|
"scripts": {
|
|
"test": "jest",
|
|
"build": "ncc build action.js -o dist"
|
|
},
|
|
"keywords": [
|
|
"github",
|
|
"action",
|
|
"code-review",
|
|
"claude"
|
|
],
|
|
"author": "PacNPal",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"@actions/core": "^1.11.1",
|
|
"@actions/exec": "^1.1.1",
|
|
"@actions/github": "^6.0.0",
|
|
"node-fetch": "^3.3.2"
|
|
},
|
|
"devDependencies": {
|
|
"@vercel/ncc": "^0.38.3",
|
|
"jest": "^29.7.0"
|
|
}
|
|
}
|