package.json•770 B
{
"name": "notesy",
"version": "1.0.0",
"main": "dist/index.js",
"type": "module",
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "tsc && node dist/index.js",
"cli": "tsc && node dist/claude-notes-cli.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "",
"license": "ISC",
"description": "Apple Notes integration for Claude using the Model Context Protocol",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.2",
"axios": "^1.8.4",
"chalk": "^5.3.0",
"child_process": "^1.0.2",
"express": "^5.1.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@types/express": "^4.17.21",
"@types/node": "^22.14.1",
"typescript": "^5.8.3"
}
}