package.json•956 B
{
"name": "@cianfrani/mcp-notes",
"version": "0.2.0-alpha",
"description": "Personal knowledge management system built on the Model Context Protocol (MCP)",
"type": "module",
"main": "dist/index.js",
"author": "Mark Cianfrani <mark@cianfrani.me>",
"license": "MIT",
"homepage": "https://cianfrani.dev",
"bin": {
"mcp-notes": "dist/index.js"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"start": "node dist/index.js",
"dev": "npx @modelcontextprotocol/inspector node dist/index.js 'Notes'"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"date-fns": "^4.1.0",
"minimatch": "^10.0.1"
},
"devDependencies": {
"@types/node": "^22.14.1",
"shx": "^0.3.4",
"typescript": "^5.6.2"
},
"files": [
"dist"
],
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=14.16.0"
}
}