@review-my-code/rmcode 0.1.0-alpha.1 → 0.1.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 (3) hide show
  1. package/README.md +29 -0
  2. package/dist/cli.js +887 -254
  3. package/package.json +8 -3
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@review-my-code/rmcode",
3
- "version": "0.1.0-alpha.1",
3
+ "version": "0.1.2",
4
4
  "description": "AI code review from your terminal. Catches logic errors, null risks, security holes, and broken error handling.",
5
5
  "keywords": [
6
6
  "code-review",
@@ -17,7 +17,8 @@
17
17
  "rmc": "dist/cli.js"
18
18
  },
19
19
  "files": [
20
- "dist"
20
+ "dist",
21
+ "README.md"
21
22
  ],
22
23
  "scripts": {
23
24
  "build": "tsc",
@@ -34,9 +35,13 @@
34
35
  "node": ">=18"
35
36
  },
36
37
  "license": "MIT",
38
+ "publishConfig": {
39
+ "access": "public"
40
+ },
37
41
  "repository": {
38
42
  "type": "git",
39
- "url": "https://github.com/review-my-code/review-my-code"
43
+ "url": "git+https://github.com/review-my-code/review-my-code.git",
44
+ "directory": "cli"
40
45
  },
41
46
  "homepage": "https://review-my-code.com",
42
47
  "author": "Alex Yang"