package.json•894 B
{
"name": "omnifocus-mcp",
"version": "1.0.0",
"description": "MCP server for OmniFocus integration using Omni Automation",
"type": "module",
"main": "dist/index.js",
"scripts": {
"build": "npm run clean && tsc && echo '#!/usr/bin/env node' | cat - dist/index.js > temp && mv temp dist/index.js && chmod +x dist/index.js",
"dev": "tsc -w",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"rebuild": "npm run clean && npm run build",
"test": "ts-node simple-task-test.ts"
},
"keywords": [
"mcp",
"omnifocus",
"productivity",
"automation"
],
"author": "Your Name",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.0",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"ts-node": "^10.9.2",
"typescript": "^5.8.3"
},
"engines": {
"node": ">=18.0.0"
}
}