agent-review-cli 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json ADDED
@@ -0,0 +1,67 @@
1
+ {
2
+ "name": "agent-review-cli",
3
+ "version": "0.2.0",
4
+ "description": "Orchestrate parallel AI agents to review, fix, and integrate code changes across your codebase",
5
+ "type": "module",
6
+ "license": "MIT",
7
+ "author": "Open-Document-Alliance",
8
+ "bin": {
9
+ "agent-review": "bin/agent-review.js"
10
+ },
11
+ "main": "dist/index.js",
12
+ "exports": {
13
+ ".": {
14
+ "import": "./dist/index.js"
15
+ }
16
+ },
17
+ "files": [
18
+ "bin",
19
+ "dist",
20
+ "README.md",
21
+ "LICENSE"
22
+ ],
23
+ "publishConfig": {
24
+ "access": "public"
25
+ },
26
+ "engines": {
27
+ "node": ">=20"
28
+ },
29
+ "keywords": [
30
+ "ai",
31
+ "code-review",
32
+ "cli",
33
+ "agents",
34
+ "codex",
35
+ "claude",
36
+ "opencode",
37
+ "developer-tools",
38
+ "automation",
39
+ "parallel",
40
+ "git"
41
+ ],
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "https://github.com/Open-Document-Alliance/Agent-Review-CLI.git"
45
+ },
46
+ "homepage": "https://github.com/Open-Document-Alliance/Agent-Review-CLI",
47
+ "bugs": {
48
+ "url": "https://github.com/Open-Document-Alliance/Agent-Review-CLI/issues"
49
+ },
50
+ "dependencies": {
51
+ "commander": "^12.1.0",
52
+ "ink": "^5.2.1",
53
+ "react": "^18.3.1"
54
+ },
55
+ "devDependencies": {
56
+ "@types/node": "^24.9.1",
57
+ "@types/react": "^18.3.12",
58
+ "tsup": "^8.5.0",
59
+ "tsx": "^4.20.6",
60
+ "typescript": "^5.9.3"
61
+ },
62
+ "scripts": {
63
+ "build": "tsup src/index.tsx --format esm --target node20 --out-dir dist --clean",
64
+ "dev": "tsx src/index.tsx",
65
+ "type-check": "tsc --noEmit"
66
+ }
67
+ }