package.json•718 B
{
"name": "obsidian-mcp",
"version": "1.0.0",
"description": "MCP server for direct Obsidian vault access",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"dev": "tsc && node dist/index.js",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"obsidian",
"vault",
"notes"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"gray-matter": "^4.0.3",
"winston": "^3.11.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/node": "^22.10.5",
"typescript": "^5.7.3"
},
"engines": {
"node": ">=18.0.0"
}
}