babylon-mcp/package.json
Michael Mainguy 6ca8339387 Update dependencies, roadmap, and add indexing scripts
- Add LanceDB (@lancedb/lancedb) for vector database
- Add @xenova/transformers for local embeddings
- Add gray-matter for YAML frontmatter parsing
- Update ROADMAP.md with Phase 1 completion status
- Add indexing scripts: index-docs.ts, test-parser.ts, test-search.ts
- Add .claude/ configuration for MCP server settings
- Add npm script: index-docs for rebuilding search index

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-23 04:58:14 -06:00

44 lines
1.1 KiB
JSON

{
"name": "babylon-mcp",
"version": "1.0.0",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "node dist/mcp/index.js",
"dev": "tsx watch src/mcp/index.ts",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"test": "vitest",
"test:ui": "vitest --ui",
"test:run": "vitest run",
"test:coverage": "vitest run --coverage",
"index-docs": "tsx scripts/index-docs.ts"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "",
"dependencies": {
"@lancedb/lancedb": "^0.22.3",
"@modelcontextprotocol/sdk": "^1.22.0",
"@xenova/transformers": "^2.17.2",
"express": "^5.1.0",
"gray-matter": "^4.0.3",
"simple-git": "^3.30.0",
"zod": "^3.25.76"
},
"devDependencies": {
"@types/express": "^5.0.5",
"@types/node": "^24.10.1",
"@types/supertest": "^6.0.3",
"@vitest/coverage-v8": "^4.0.13",
"nodemon": "^3.1.11",
"supertest": "^7.1.4",
"ts-node": "^10.9.2",
"tsx": "^4.20.6",
"typescript": "^5.9.3",
"vitest": "^4.0.13"
}
}