Files
ha-mcp-server/package.json
Felix Zösch 1761c3cdd3 Initial commit
2025-12-11 20:29:51 +01:00

33 lines
667 B
JSON

{
"name": "ha-mcp-server",
"version": "1.0.0",
"description": "Model Context Protocol server for Home Assistant integration",
"type": "module",
"bin": {
"ha-mcp-server": "./build/index.js"
},
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"start": "node build/index.js",
"prepare": "npm run build"
},
"keywords": [
"mcp",
"home-assistant",
"smart-home",
"automation"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.0.4",
"axios": "^1.7.2",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/node": "^20.12.7",
"typescript": "^5.4.5"
}
}