opencode-review-helper 0.1.0 → 0.1.1
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 +6 -3
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencode-review-helper",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "OpenCode plugin for reviewing AI-generated code changes - suggests review order and analyzes impact",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -17,7 +17,10 @@
|
|
|
17
17
|
"build": "tsc",
|
|
18
18
|
"dev": "tsc --watch",
|
|
19
19
|
"prepublishOnly": "npm run build",
|
|
20
|
-
"typecheck": "tsc --noEmit"
|
|
20
|
+
"typecheck": "tsc --noEmit",
|
|
21
|
+
"release:patch": "npm version patch && git push && git push --tags && npm publish --access public",
|
|
22
|
+
"release:minor": "npm version minor && git push && git push --tags && npm publish --access public",
|
|
23
|
+
"release:major": "npm version major && git push && git push --tags && npm publish --access public"
|
|
21
24
|
},
|
|
22
25
|
"dependencies": {
|
|
23
26
|
"@opencode-ai/plugin": "^1.0.209",
|
|
@@ -36,7 +39,7 @@
|
|
|
36
39
|
],
|
|
37
40
|
"repository": {
|
|
38
41
|
"type": "git",
|
|
39
|
-
"url": "https://github.com/shamashel/opencode-review-helper"
|
|
42
|
+
"url": "git+https://github.com/shamashel/opencode-review-helper.git"
|
|
40
43
|
},
|
|
41
44
|
"author": "shamashel",
|
|
42
45
|
"license": "MIT",
|