Files
HaBraid/package.json
Contributor 5d5336757d feat: HaBraid v0.1.0 — host-following memory visualization engine for Obsidian
- Hybrid BM25 + HNSW vector search with context enrichment
- Knowledge graph with entities, relations, and community detection
- Host-following LLM route with fallback backends
- 3-tier lint system (static + HNSW dup + contradiction detection)
- Q&A Synthesis (Karpathy LLM Wiki pattern)
- 16 MCP tools for agent-driven workflows
- Incremental wiki generation with checkpointing
- SQLite-backed item store with FTS5 + vector indexes
2026-04-18 15:46:42 +09:00

46 lines
1.0 KiB
JSON

{
"name": "habraid",
"version": "0.1.0",
"description": "Obsidian wiki engine for HaBraid Team — knowledge vault with MemPalace integration",
"type": "module",
"main": "dist/index.js",
"bin": {
"habraid": "dist/mcp-server.js"
},
"scripts": {
"build": "tsc",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"lint": "tsc --noEmit",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"obsidian",
"wiki",
"mempalace",
"knowledge-base"
],
"author": "contributor",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.29.0",
"@xenova/transformers": "^2.17.2",
"better-sqlite3": "^11.0.0",
"chalk": "^5.3.0",
"commander": "^12.0.0",
"dotenv": "^17.4.2",
"gray-matter": "^4.0.3",
"hnswlib-node": "^3.0.0",
"ora": "^8.0.0",
"simple-git": "^3.0.0"
},
"devDependencies": {
"@types/better-sqlite3": "^7.6.0",
"@types/node": "^22.0.0",
"tsx": "^4.0.0",
"typescript": "^5.9.3",
"vitest": "^4.1.4"
}
}