-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
22 lines (22 loc) · 737 Bytes
/
Copy pathpackage.json
File metadata and controls
22 lines (22 loc) · 737 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{
"name": "pr-review-agent",
"version": "1.0.0",
"type": "module",
"scripts": {
"start": "node index.js",
"validate": "npx gitagent validate",
"demo": "node index.js 1 your-org/your-repo",
"test": "node test.js",
"test:quick": "node test.js --quick",
"test:dryrun": "node index.js --dry-run",
"test:anthropic": "node test.js --provider 'Anthropic Claude Sonnet'",
"test:openai": "node test.js --provider 'OpenAI GPT-4.1'",
"test:groq": "node test.js --provider 'Groq Llama 3.3 70B'",
"test:nvidia": "node test.js --provider 'NVIDIA NIM'",
"test:gemini": "node test.js --provider 'Google Gemini 1.5 Pro'"
},
"dependencies": {
"gitclaw": "latest",
"clawless": "latest"
}
}