Files
homeassistant-mcp/package.json
2024-12-12 16:20:58 -08:00

52 lines
1.3 KiB
JSON

{
"name": "@strandbrown/homeassistant-mcp",
"version": "0.1.0",
"description": "Home Assistant Model Context Protocol Server",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest",
"prepare": "npm run build",
"start": "node dist/index.js",
"dev": "ts-node src/index.ts",
"build:start": "npm run build && npm run start"
},
"author": "Tevon Strand-Brown",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/tevonsb/homeassistant-mcp.git"
},
"keywords": [
"home-assistant",
"mcp",
"model-context-protocol"
],
"dependencies": {
"@digital-alchemy/core": "^24.11.4",
"@digital-alchemy/hass": "^24.11.4",
"@modelcontextprotocol/sdk": "^1.0.3",
"dotenv": "^16.4.7",
"litemcp": "^0.7.0",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@digital-alchemy/type-writer": "^24.11.3",
"@types/express": "^5.0.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.0",
"@types/socket.io": "^3.0.1",
"jest": "^29.7.0",
"nodemon": "^3.0.2",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.2",
"typescript": "^5.7.2"
},
"type": "module",
"publishConfig": {
"access": "public"
}
}