package.jsonโข1.66 kB
{
"name": "deployhq-mcp-server",
"version": "1.1.0",
"description": "Model Context Protocol (MCP) server for DeployHQ API integration",
"main": "dist/index.js",
"bin": {
"deployhq-mcp-server": "./dist/stdio.js"
},
"type": "module",
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"dev": "tsx --watch src/index.ts",
"build": "tsc",
"start": "node dist/index.js",
"test": "vitest run",
"test:watch": "vitest",
"test:ui": "vitest --ui",
"test:coverage": "vitest run --coverage",
"lint": "eslint src",
"type-check": "tsc --noEmit",
"clean": "rm -rf dist"
},
"keywords": [
"mcp",
"deployhq",
"deployment",
"api",
"model-context-protocol"
],
"author": "DeployHQ Team <support@deployhq.com>",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/deployhq/deployhq-mcp-server.git"
},
"homepage": "https://github.com/deployhq/deployhq-mcp-server#readme",
"bugs": {
"url": "https://github.com/deployhq/deployhq-mcp-server/issues"
},
"files": [
"dist",
"docs",
"README.md",
"LICENSE"
],
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"dotenv": "^16.4.5",
"express": "^4.21.1",
"node-fetch": "^2.7.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^22.9.0",
"@types/node-fetch": "^2.6.13",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"@typescript-eslint/parser": "^8.13.0",
"@vitest/ui": "^4.0.8",
"eslint": "^9.14.0",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^4.0.8"
}
}