package.json•1.05 kB
{
"name": "mcp-makesync",
"version": "1.0.0",
"description": "A model context protocol server for Make.com, enabling intelligent scenario patching and module-agnostic automation.",
"license": "MIT",
"author": "Nadav Daniel",
"homepage": "https://github.com/nadavdaniel/mcp-makesync",
"repository": {
"type": "git",
"url": "https://github.com/nadavdaniel/mcp-makesync.git"
},
"type": "module",
"bin": {
"mcp-makesync": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"dev": "tsc --watch",
"start": "node dist/index.js",
"clean": "rm -rf dist",
"test": "echo \"No tests defined yet\" && exit 0"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.5.0",
"node-fetch": "^3.3.2",
"open": "^10.1.0",
"zod-to-json-schema": "^3.24.5"
},
"devDependencies": {
"@types/node": "^20.10.0",
"shx": "^0.3.4",
"typescript": "^5.3.3"
},
"engines": {
"node": ">=18.0.0"
}
}