@warpmetrics/review 0.1.0 → 0.1.4

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 (1) hide show
  1. package/package.json +18 -3
package/package.json CHANGED
@@ -1,21 +1,27 @@
1
1
  {
2
2
  "name": "@warpmetrics/review",
3
- "version": "0.1.0",
3
+ "version": "0.1.4",
4
4
  "type": "module",
5
5
  "description": "AI code reviewer that learns your codebase. Powered by WarpMetrics.",
6
6
  "bin": {
7
7
  "warp-review": "./bin/init.js"
8
8
  },
9
+ "scripts": {
10
+ "test": "vitest run",
11
+ "release:patch": "npm version patch && git push origin main --tags",
12
+ "release:minor": "npm version minor && git push origin main --tags"
13
+ },
9
14
  "files": [
10
15
  "bin/",
11
16
  "src/",
17
+ "!src/**/*.test.js",
12
18
  "defaults/",
13
19
  "README.md",
14
20
  "LICENSE"
15
21
  ],
16
22
  "dependencies": {
17
- "@warpmetrics/warp": "latest",
18
23
  "@anthropic-ai/sdk": "latest",
24
+ "@warpmetrics/warp": "latest",
19
25
  "minimatch": "^10.0.0"
20
26
  },
21
27
  "license": "MIT",
@@ -23,5 +29,14 @@
23
29
  "type": "git",
24
30
  "url": "https://github.com/warpmetrics/warp-review"
25
31
  },
26
- "keywords": ["code-review", "ai", "github-action", "warpmetrics", "llm"]
32
+ "keywords": [
33
+ "code-review",
34
+ "ai",
35
+ "github-action",
36
+ "warpmetrics",
37
+ "llm"
38
+ ],
39
+ "devDependencies": {
40
+ "vitest": "^3.2.4"
41
+ }
27
42
  }