@hiveforge/hivemind-mcp 1.14.0 → 2.0.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/README.md +2 -0
- package/package.json +9 -5
package/README.md
CHANGED
|
@@ -152,6 +152,8 @@ See [.planning/PROJECT.md](.planning/PROJECT.md) for the active requirements and
|
|
|
152
152
|
- [x] ComfyUI integration with workflow management
|
|
153
153
|
- [x] Obsidian plugin with image generation and frontmatter tools
|
|
154
154
|
- [x] GitHub release automation for plugin distribution
|
|
155
|
+
- [x] Test coverage improvement (37% → 45%)
|
|
156
|
+
- [x] CodeQL security scanning integration
|
|
155
157
|
|
|
156
158
|
**Up Next:**
|
|
157
159
|
- [ ] Obsidian plugin community submission (automated release ready)
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hiveforge/hivemind-mcp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "2.0.0",
|
|
4
4
|
"description": "MCP server for Obsidian worldbuilding vaults - provides AI tools with consistent canonical context",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"type": "module",
|
|
@@ -18,7 +18,10 @@
|
|
|
18
18
|
"build": "tsc",
|
|
19
19
|
"dev": "tsc --watch",
|
|
20
20
|
"start": "node dist/index.js",
|
|
21
|
-
"test": "
|
|
21
|
+
"test": "vitest run",
|
|
22
|
+
"test:watch": "vitest",
|
|
23
|
+
"test:ui": "vitest --ui",
|
|
24
|
+
"test:coverage": "vitest run --coverage",
|
|
22
25
|
"lint": "eslint src --ext .ts",
|
|
23
26
|
"clean": "rimraf dist",
|
|
24
27
|
"prepare": "husky || true",
|
|
@@ -77,16 +80,17 @@
|
|
|
77
80
|
"@semantic-release/git": "^10.0.1",
|
|
78
81
|
"@types/better-sqlite3": "^7.6.12",
|
|
79
82
|
"@types/express": "^5.0.0",
|
|
80
|
-
"@types/jest": "^29.5.14",
|
|
81
83
|
"@types/node": "^22.10.5",
|
|
82
84
|
"@types/ws": "^8.18.1",
|
|
83
85
|
"@typescript-eslint/eslint-plugin": "^8.20.0",
|
|
84
86
|
"@typescript-eslint/parser": "^8.20.0",
|
|
87
|
+
"@vitest/coverage-v8": "^4.0.18",
|
|
88
|
+
"@vitest/ui": "^4.0.18",
|
|
85
89
|
"eslint": "^9.18.0",
|
|
86
90
|
"husky": "^9.1.7",
|
|
87
|
-
"jest": "^29.7.0",
|
|
88
91
|
"rimraf": "^6.0.1",
|
|
89
92
|
"semantic-release": "^25.0.2",
|
|
90
|
-
"typescript": "^5.7.2"
|
|
93
|
+
"typescript": "^5.7.2",
|
|
94
|
+
"vitest": "^4.0.18"
|
|
91
95
|
}
|
|
92
96
|
}
|