package.jsonā¢1.58 kB
{
"name": "obsidian-semantic-mcp",
"version": "1.7.2",
"description": "Semantic MCP server for Obsidian - AI-optimized interface with 5 intelligent operations",
"private": false,
"type": "module",
"main": "dist/index.js",
"bin": {
"obsidian-semantic-mcp": "dist/index.js"
},
"scripts": {
"build": "tsc && cp -r src/config dist/ && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
"dev": "tsx watch src/index.ts",
"start": "node dist/index.js",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:coverage": "NODE_OPTIONS='--experimental-vm-modules' jest --coverage",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix",
"build:full": "npm run test && npm run build",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"obsidian",
"claude",
"ai"
],
"author": "Aaron Bockelie",
"license": "MIT",
"files": [
"dist",
"src",
"tsconfig.json"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"@types/node": "^20.0.0",
"@types/sharp": "^0.31.1",
"@types/turndown": "^5.0.5",
"axios": "^1.7.9",
"dotenv": "^16.5.0",
"sharp": "^0.34.2",
"turndown": "^7.2.0",
"typescript": "^5.3.3"
},
"devDependencies": {
"@types/jest": "^30.0.0",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^9.29.0",
"eslint-config-prettier": "^10.1.5",
"jest": "^30.0.2",
"prettier": "^3.6.0",
"ts-jest": "^29.4.0",
"tsx": "^4.0.0"
}
}