second-opinion-mcp 0.5.0 → 0.6.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/dist/server.js +1 -1
- package/package.json +6 -2
- package/second-opinion.skill.md +1 -1
package/dist/server.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "second-opinion-mcp",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.6.0",
|
|
4
4
|
"description": "MCP server for getting code reviews from Gemini/GPT in Claude Code",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"mcp",
|
|
@@ -35,11 +35,12 @@
|
|
|
35
35
|
"node": ">=18"
|
|
36
36
|
},
|
|
37
37
|
"scripts": {
|
|
38
|
-
"build": "tsc",
|
|
38
|
+
"build": "tsc && node scripts/install-config.js",
|
|
39
39
|
"start": "node dist/index.js",
|
|
40
40
|
"dev": "tsx src/index.ts",
|
|
41
41
|
"test": "vitest run",
|
|
42
42
|
"test:watch": "vitest",
|
|
43
|
+
"release": "release-it",
|
|
43
44
|
"prepublishOnly": "npm run build",
|
|
44
45
|
"postinstall": "node scripts/install-config.js",
|
|
45
46
|
"install-config": "node scripts/install-config.js"
|
|
@@ -52,8 +53,11 @@
|
|
|
52
53
|
"zod": "^3.24.1"
|
|
53
54
|
},
|
|
54
55
|
"devDependencies": {
|
|
56
|
+
"@release-it/bumper": "^7.0.5",
|
|
57
|
+
"@release-it/conventional-changelog": "^10.0.6",
|
|
55
58
|
"@types/node": "^22.10.5",
|
|
56
59
|
"@vitest/coverage-v8": "^4.0.18",
|
|
60
|
+
"release-it": "^19.2.4",
|
|
57
61
|
"tsx": "^4.19.2",
|
|
58
62
|
"typescript": "^5.7.2",
|
|
59
63
|
"vitest": "^4.0.18"
|