package.json•1.02 kB
{
"name": "netlify-mcp-server",
"version": "1.0.1",
"description": "MCP server for Netlify integration",
"type": "module",
"main": "build/index.js",
"bin": {
"netlify-mcp": "./build/index.js"
},
"scripts": {
"build": "tsc",
"start": "node build/index.js",
"dev": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rm -rf build"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^0.6.0",
"axios": "^1.7.2",
"dotenv": "^16.4.5"
},
"devDependencies": {
"@types/node": "^20.14.0",
"typescript": "^5.5.0"
},
"keywords": [
"mcp",
"netlify",
"deployment",
"model-context-protocol"
],
"author": "MCERQUA",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/MCERQUA/netlify-mcp.git"
},
"bugs": {
"url": "https://github.com/MCERQUA/netlify-mcp/issues"
},
"homepage": "https://github.com/MCERQUA/netlify-mcp#readme",
"engines": {
"node": ">=18.0.0"
}
}