greview-cli 0.0.0 → 0.12.2

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.
Files changed (4) hide show
  1. package/LICENSE +21 -0
  2. package/README.md +28 -0
  3. package/dist/cli.js +1425 -0
  4. package/package.json +34 -3
package/package.json CHANGED
@@ -1,12 +1,43 @@
1
1
  {
2
2
  "name": "greview-cli",
3
- "version": "0.0.0",
4
- "description": "CLI for reviewing local Git diffs with coding agents",
3
+ "version": "0.12.2",
4
+ "description": "Review local Git diffs with humans and coding agents",
5
5
  "license": "MIT",
6
+ "type": "module",
7
+ "bin": {
8
+ "greview": "dist/cli.js"
9
+ },
10
+ "files": [
11
+ "dist",
12
+ "README.md"
13
+ ],
14
+ "engines": {
15
+ "node": ">=22.5.0"
16
+ },
17
+ "scripts": {
18
+ "build": "node build.mjs",
19
+ "typecheck": "tsc -p tsconfig.json",
20
+ "test": "node --test --experimental-strip-types 'test/*.test.ts'"
21
+ },
22
+ "devDependencies": {
23
+ "@types/node": "^22.10.0"
24
+ },
6
25
  "repository": {
7
26
  "type": "git",
8
27
  "url": "https://github.com/YouXam/greview.git",
9
28
  "directory": "packages/cli"
10
29
  },
11
- "homepage": "https://github.com/YouXam/greview#readme"
30
+ "bugs": {
31
+ "url": "https://github.com/YouXam/greview/issues"
32
+ },
33
+ "homepage": "https://github.com/YouXam/greview#readme",
34
+ "keywords": [
35
+ "git",
36
+ "diff",
37
+ "review",
38
+ "comments",
39
+ "code-review",
40
+ "agent",
41
+ "cli"
42
+ ]
12
43
  }