package.json•954 B
{
"name": "hostinger-api-mcp",
"version": "0.1.10",
"description": "MCP server for Hostinger API",
"repository": {
"type": "git",
"url": "https://github.com/hostinger/api-mcp-server.git"
},
"license": "MIT",
"keywords": [
"hostinger",
"mcp",
"server",
"rest",
"api"
],
"type": "module",
"main": "server.js",
"bin": {
"hostinger-api-mcp": "./server.js"
},
"scripts": {
"start": "node server.js",
"build": "node build.js",
"start:ts": "npx tsc && node dist/server.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.0",
"minimist": "^1.2.8",
"express": "^4.21.2",
"axios": "^1.8.0",
"dotenv": "^16.4.7",
"cors": "^2.8.5"
},
"devDependencies": {
"@types/node": "^24.0.0",
"@types/express": "^5.0.0",
"@types/cors": "^2.8.17",
"@types/minimist": "^1.2.5",
"typescript": "^5.7.2"
},
"engines": {
"node": ">=20.0.0"
}
}