package.json•2.07 kB
{
"name": "@cmwen/min-kb-mcp",
"version": "0.2.2",
"description": "A minimalist, file-based knowledge base server (MCP) for LLMs.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"min-kb-mcp": "./dist/cli.js"
},
"publishConfig": {
"registry": "https://registry.npmjs.org/"
},
"files": [
"dist",
"README.md",
"LICENSE",
"LLM.txt"
],
"scripts": {
"start": "ts-node src/cli.ts",
"dev": "cross-env DEBUG=* MCP_TRANSPORT=http MCP_PORT=9876 tsx --trace-warnings src/cli.ts start --kb dev-kb",
"build": "tsc",
"lint": "biome check src/",
"lint:fix": "biome check --write src/",
"format": "biome format --write src/",
"test": "vitest run --reporter=default",
"test:watch": "vitest",
"prepublishOnly": "pnpm run build",
"prepare": "husky"
},
"keywords": [
"llm",
"mcp",
"knowledge-base",
"sqlite",
"typescript",
"markdown",
"ai",
"notes"
],
"repository": {
"type": "git",
"url": "git@github.com:cmwen/min-kb-mcp.git"
},
"bugs": {
"url": "https://github.com/cmwen/min-kb-mcp/issues"
},
"homepage": "https://github.com/cmwen/min-kb-mcp#readme",
"author": "Chi-Ming Wen",
"license": "MIT",
"packageManager": "pnpm@10.14.0",
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.0.0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.17.2",
"appdata-path": "^1.0.0",
"sql.js": "^1.11.0",
"commander": "^12.1.0",
"cors": "^2.8.5",
"express": "^5.1.0",
"remove-markdown": "^0.5.0",
"uuid": "^10.0.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@biomejs/biome": "^2.1.4",
"@commitlint/cli": "^19.8.1",
"@commitlint/config-conventional": "^19.8.1",
"@types/node": "^20.14.10",
"vitest": "^2.0.5",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.3",
"@types/remove-markdown": "^0.1.1",
"@types/uuid": "^10.0.0",
"cross-env": "^10.0.0",
"husky": "^9.1.7",
"ts-node": "^10.9.2",
"tsx": "^4.16.2",
"typescript": "^5.5.3"
}
}