package.json•893 B
{
"name": "noteplan-mcp",
"version": "1.0.0",
"description": "MCP server for NotePlan.co",
"type": "module",
"main": "build/index.js",
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"start": "node build/index.js",
"dev": "tsc && nodemon build/index.js",
"start-http": "node src/index.js",
"lint": "eslint src",
"test": "jest",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.3",
"body-parser": "^1.20.2",
"cors": "^2.8.5",
"express": "^4.18.2",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"eslint": "^8.56.0",
"jest": "^29.7.0",
"nodemon": "^3.0.3",
"supertest": "^6.3.3",
"typescript": "^5.0.0"
},
"bin": {
"noteplan-mcp": "./build/index.js"
}
}