Initial commit

This commit is contained in:
pacnpal
2024-12-10 18:42:08 -05:00
parent ef532feee8
commit 7ba8e02de8
8 changed files with 453 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"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.10.1",
"@actions/github": "^6.0.0",
"@actions/exec": "^1.1.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"@vercel/ncc": "^0.38.3",
"jest": "^29.7.0"
}
}