- Implemented comprehensive AI-driven system analysis using OpenAI's GPT-4 - Created interactive CLI tool for Home Assistant device and system insights - Added support for standard and custom prompt-based analysis - Integrated MCP server data collection with intelligent AI processing - Updated package.json with new OpenAI and XML dependencies - Enhanced README with detailed OpenAI integration documentation
57 lines
1.7 KiB
JSON
57 lines
1.7 KiB
JSON
{
|
|
"name": "jango-blockchained/homeassistant-mcp",
|
|
"version": "0.1.0",
|
|
"description": "Model Context Protocol Server for Home Assistant",
|
|
"type": "module",
|
|
"main": "dist/index.js",
|
|
"scripts": {
|
|
"build": "npx tsc",
|
|
"start": "node dist/src/index.js",
|
|
"dev": "tsx watch src/index.ts",
|
|
"test": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.config.cjs",
|
|
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.config.cjs --coverage",
|
|
"test:watch": "NODE_OPTIONS=--experimental-vm-modules jest --config=jest.config.cjs --watch",
|
|
"test:openai": "tsx openai_test.ts",
|
|
"lint": "eslint src --ext .ts",
|
|
"lint:fix": "eslint src --ext .ts --fix",
|
|
"prepare": "npm run build",
|
|
"clean": "rimraf dist",
|
|
"types:check": "tsc --noEmit",
|
|
"types:install": "npm install --save-dev @types/node @types/jest"
|
|
},
|
|
"dependencies": {
|
|
"@digital-alchemy/core": "^24.11.4",
|
|
"@digital-alchemy/hass": "^24.11.4",
|
|
"@types/xmldom": "^0.1.34",
|
|
"@xmldom/xmldom": "^0.9.7",
|
|
"ajv": "^8.12.0",
|
|
"dotenv": "^16.3.1",
|
|
"express": "^4.18.2",
|
|
"express-rate-limit": "^7.1.5",
|
|
"helmet": "^7.1.0",
|
|
"litemcp": "^0.7.0",
|
|
"uuid": "^9.0.1",
|
|
"ws": "^8.16.0",
|
|
"zod": "^3.22.4"
|
|
},
|
|
"devDependencies": {
|
|
"@types/ajv": "^1.0.0",
|
|
"@types/express": "^4.17.21",
|
|
"@types/express-rate-limit": "^6.0.0",
|
|
"@types/helmet": "^4.0.0",
|
|
"@types/jest": "^29.5.14",
|
|
"@types/node": "^20.17.16",
|
|
"@types/uuid": "^9.0.8",
|
|
"@types/ws": "^8.5.10",
|
|
"jest": "^29.7.0",
|
|
"node-fetch": "^3.3.2",
|
|
"openai": "^4.82.0",
|
|
"rimraf": "^5.0.5",
|
|
"ts-jest": "^29.1.2",
|
|
"tsx": "^4.7.0",
|
|
"typescript": "^5.3.3"
|
|
},
|
|
"author": "Jango Blockchained",
|
|
"license": "MIT"
|
|
}
|