This marks version 1.0.0 as the first public release of the plugin. Previous versions (1.0.0-3.0.0) were private development iterations. Changes: - Reset manifest.json version to 1.0.0 - Reset package.json version to 1.0.0 - Clear versions.json to single entry (1.0.0 -> 0.15.0) - Rewrite CHANGELOG.md for public release - Remove private development history - Document all features as part of 1.0.0 - Add future roadmap section Git history is preserved to demonstrate: - Development quality and security practices - Comprehensive test coverage efforts - Thoughtful evolution of features This plugin implements MCP (Model Context Protocol) to expose Obsidian vault operations via HTTP for AI assistants and other clients.
47 lines
1.2 KiB
JSON
47 lines
1.2 KiB
JSON
{
|
|
"name": "obsidian-mcp-server",
|
|
"version": "1.0.0",
|
|
"description": "MCP (Model Context Protocol) server plugin for Obsidian - exposes vault operations via HTTP",
|
|
"main": "main.js",
|
|
"scripts": {
|
|
"dev": "node esbuild.config.mjs",
|
|
"build": "tsc -noEmit -skipLibCheck && node esbuild.config.mjs production",
|
|
"test": "jest",
|
|
"test:watch": "jest --watch",
|
|
"test:coverage": "jest --coverage",
|
|
"version": "node version-bump.mjs && git add manifest.json versions.json"
|
|
},
|
|
"keywords": [
|
|
"obsidian",
|
|
"mcp",
|
|
"model-context-protocol",
|
|
"ai",
|
|
"llm"
|
|
],
|
|
"author": "",
|
|
"license": "MIT",
|
|
"dependencies": {
|
|
"cors": "^2.8.5",
|
|
"express": "^4.18.2"
|
|
},
|
|
"devDependencies": {
|
|
"@types/body-parser": "^1.19.6",
|
|
"@types/cors": "^2.8.17",
|
|
"@types/express": "^4.17.21",
|
|
"@types/jest": "^30.0.0",
|
|
"@types/node": "^16.11.6",
|
|
"@types/supertest": "^6.0.3",
|
|
"@typescript-eslint/eslint-plugin": "5.29.0",
|
|
"@typescript-eslint/parser": "5.29.0",
|
|
"builtin-modules": "3.3.0",
|
|
"electron": "^38.4.0",
|
|
"esbuild": "0.17.3",
|
|
"jest": "^30.2.0",
|
|
"obsidian": "latest",
|
|
"supertest": "^7.1.4",
|
|
"ts-jest": "^29.4.5",
|
|
"tslib": "2.4.0",
|
|
"typescript": "4.7.4"
|
|
}
|
|
}
|