-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 856 Bytes
/
Copy pathpackage.json
File metadata and controls
38 lines (38 loc) · 856 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "claude-review",
"version": "1.0.0",
"description": "Automated AI code reviews for every git commit, powered by Claude Sonnet 4.5",
"main": "src/index.js",
"type": "module",
"scripts": {
"review": "node src/index.js"
},
"keywords": [
"code-review",
"git",
"git-hooks",
"claude",
"ai",
"static-analysis",
"security",
"code-quality",
"anthropic",
"automation"
],
"author": "Solaris Partners",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/solaris-partners/ClaudeReview.git"
},
"bugs": {
"url": "https://github.com/solaris-partners/ClaudeReview/issues"
},
"homepage": "https://github.com/solaris-partners/ClaudeReview#readme",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@anthropic-ai/sdk": "^0.32.1"
}
}