mirror of
https://github.com/NocturnLabs/opencode-personal-knowledge.git
synced 2026-06-01 21:58:56 +02:00
62 lines
1.5 KiB
JSON
62 lines
1.5 KiB
JSON
{
|
|
"name": "opencode-personal-knowledge",
|
|
"version": "1.0.10",
|
|
"description": "Personal knowledge MCP server with vector database for the Opencode ecosystem",
|
|
"type": "module",
|
|
"main": "dist/mcp-server.js",
|
|
"bin": {
|
|
"opencode-personal-knowledge": "dist/mcp-server.js"
|
|
},
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"start": "bun run src/index.ts",
|
|
"dev": "bun --watch run src/index.ts",
|
|
"mcp": "bun run src/mcp-server.ts",
|
|
"build": "tsc && chmod +x dist/mcp-server.js",
|
|
"prepublishOnly": "npm run build",
|
|
"test": "bun test",
|
|
"test:coverage": "bun test --coverage",
|
|
"lint": "bunx @biomejs/biome check src/",
|
|
"format": "bunx @biomejs/biome format --write src/"
|
|
},
|
|
"keywords": [
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"knowledge",
|
|
"vector",
|
|
"opencode",
|
|
"ai",
|
|
"embeddings",
|
|
"semantic-search"
|
|
],
|
|
"author": "NocturnLabs - Yum (CodingInCarhartts)",
|
|
"license": "MIT",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/NocturnLabs/opencode-personal-knowledge"
|
|
},
|
|
"engines": {
|
|
"node": ">=18.0.0"
|
|
},
|
|
"dependencies": {
|
|
"@lancedb/lancedb": "^0.22.3",
|
|
"@modelcontextprotocol/sdk": "^1.24.3",
|
|
"commander": "^14.0.2",
|
|
"fastembed": "^2.0.0",
|
|
"zod": "^4.1.13"
|
|
},
|
|
"devDependencies": {
|
|
"@biomejs/biome": "^1.9.4",
|
|
"@types/bun": "^1.1.14",
|
|
"@types/node": "^22.10.2",
|
|
"typescript": "^5.7.2"
|
|
},
|
|
"trustedDependencies": [
|
|
"@biomejs/biome",
|
|
"protobufjs"
|
|
]
|
|
}
|