package.jsonโข1.94 kB
{
"name": "@thelord/enhanced-homeassistant-mcp",
"version": "1.0.0",
"description": "Enhanced MCP server for Home Assistant with comprehensive API integration",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": {
"enhanced-homeassistant-mcp": "dist/cli.js",
"enhanced-ha-mcp": "dist/cli.js",
"ha-mcp": "dist/cli.js"
},
"scripts": {
"build": "tsc",
"start": "node dist/index.js",
"dev": "ts-node --esm src/index.ts",
"inspector": "npx @modelcontextprotocol/inspector dist/index.js",
"watch": "tsc --watch",
"test": "node test/test-server.js",
"test:build": "npm run build && node test/test-server.js",
"clean": "rm -rf dist/",
"rebuild": "npm run clean && npm run build",
"prepublishOnly": "npm run clean && npm run build",
"postinstall": "npm run build",
"cli": "node dist/cli.js",
"cli:help": "node dist/cli.js help",
"cli:health": "node dist/cli.js health",
"cli:inspect": "node dist/cli.js inspect",
"cli:minimal": "node dist/cli.js minimal"
},
"files": [
"dist",
"README.md",
"DOCKER.md",
"CONTRIBUTING.md"
],
"engines": {
"node": ">=18.0.0"
},
"repository": {
"type": "git",
"url": "https://github.com/thelord/enhanced-homeassistant-mcp.git"
},
"bugs": {
"url": "https://github.com/thelord/enhanced-homeassistant-mcp/issues"
},
"homepage": "https://github.com/thelord/enhanced-homeassistant-mcp#readme",
"keywords": [
"mcp",
"home-assistant",
"smart-home",
"automation",
"iot"
],
"author": "thelord",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.0",
"@smithery/sdk": "^1.5.2",
"axios": "^1.8.4",
"dotenv": "^16.4.7",
"zod": "^3.22.0"
},
"devDependencies": {
"@types/node": "^20.0.0",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
}
}