aaronsb_obsidian-mcp-plugin/package.json
Aaron Bockelie 1e366dfe56 fix: Resolve version display issues in Obsidian (v0.3.2)
- Fix version.ts to use build-time injection instead of runtime package.json reading
- Update sync-version.mjs to also sync version.ts file
- Eliminate "Could not read version from package.json" warnings
- Plugin now correctly displays v0.3.2 instead of fallback v0.2.0

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

Co-Authored-By: Claude <noreply@anthropic.com>
2025-06-27 13:11:40 -05:00

49 lines
1.4 KiB
JSON

{
"name": "obsidian-mcp-plugin",
"version": "0.3.2",
"description": "Semantic MCP server plugin providing AI tools with direct Obsidian vault access via HTTP transport",
"main": "main.js",
"scripts": {
"dev": "node esbuild.config.mjs",
"build": "node sync-version.mjs && tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
"sync-version": "node sync-version.mjs",
"version": "node sync-version.mjs && git add manifest.json",
"test": "jest",
"lint": "eslint src --ext .ts,.tsx",
"lint:fix": "eslint src --ext .ts,.tsx --fix"
},
"keywords": [
"obsidian",
"plugin",
"mcp",
"rest-api",
"ai",
"semantic"
],
"author": "Aaron Blumenfeld",
"license": "MIT",
"devDependencies": {
"@types/jest": "^29.5.5",
"@types/node": "^20.6.2",
"@typescript-eslint/eslint-plugin": "^6.7.0",
"@typescript-eslint/parser": "^6.7.0",
"builtin-modules": "^3.3.0",
"esbuild": "0.19.2",
"eslint": "^8.49.0",
"jest": "^29.7.0",
"obsidian": "latest",
"ts-jest": "^29.1.1",
"tslib": "2.6.2",
"typescript": "5.2.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.2",
"@types/cors": "^2.8.19",
"@types/express": "^4.17.23",
"@types/turndown": "^5.0.5",
"cors": "^2.8.5",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"turndown": "^7.2.0"
}
}