mirror of
https://github.com/allexcd/obsidian-mcp.git
synced 2026-07-22 06:50:59 +00:00
51 lines
2 KiB
JSON
51 lines
2 KiB
JSON
{
|
|
"name": "obsidian-mcp",
|
|
"version": "0.5.5",
|
|
"private": true,
|
|
"description": "Read-only by default, exclusion-based local bridge for using vault notes through MCP clients (Claude Desktop, LM Studio).",
|
|
"license": "MIT",
|
|
"homepage": "https://github.com/allexcd/obsidian-mcp#readme",
|
|
"bugs": {
|
|
"url": "https://github.com/allexcd/obsidian-mcp/issues"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/allexcd/obsidian-mcp"
|
|
},
|
|
"type": "module",
|
|
"workspaces": [
|
|
"packages/*"
|
|
],
|
|
"scripts": {
|
|
"prepare": "git config core.hooksPath .githooks 2>/dev/null || true",
|
|
"clean": "node scripts/clean.mjs",
|
|
"build": "npm run build --workspace @obsidian-mcp/shared && npm run build --workspace @obsidian-mcp/mcp-server && node scripts/bundle-mcp-server.mjs && npm run build --workspace @obsidian-mcp/plugin && node scripts/bundle-plugin.mjs",
|
|
"plugin:bundle": "npm run build --workspace @obsidian-mcp/shared && npm run build --workspace @obsidian-mcp/mcp-server && node scripts/bundle-mcp-server.mjs && npm run build --workspace @obsidian-mcp/plugin && node scripts/bundle-plugin.mjs",
|
|
"plugin:package": "npm run plugin:bundle && node scripts/package-plugin.mjs",
|
|
"plugin:install": "npm run plugin:bundle && node scripts/install-plugin.mjs",
|
|
"lint": "eslint packages scripts",
|
|
"check:paths": "node scripts/check-paths.mjs",
|
|
"test": "vitest run",
|
|
"typecheck": "tsc -b packages/shared packages/mcp-server packages/plugin --pretty false",
|
|
"release": "node scripts/release.cjs",
|
|
"lint:obsidian": "eslint -c eslint.obsidian.config.mjs packages scripts package.json"
|
|
},
|
|
"engines": {
|
|
"node": ">=20"
|
|
},
|
|
"devDependencies": {
|
|
"@eslint/js": "^9.18.0",
|
|
"@eslint/json": "^2.0.0",
|
|
"@types/better-sqlite3": "^7.6.13",
|
|
"@types/node": "^20.17.24",
|
|
"esbuild": "^0.25.1",
|
|
"eslint": "^10.3.0",
|
|
"eslint-plugin-obsidianmd": "^0.2.9",
|
|
"globals": "^17.6.0",
|
|
"typescript": "^5.8.2",
|
|
"typescript-eslint": "^8.59.2"
|
|
},
|
|
"dependencies": {
|
|
"vitest": "^4.1.9"
|
|
}
|
|
}
|