Files
homeassistant-mcp/package.json
2024-12-17 16:21:19 +01:00

38 lines
1.0 KiB
JSON

{
"name": "@strandbrown/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/index.js",
"dev": "tsx watch src/index.ts",
"test": "jest --config=jest.config.js",
"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",
"dotenv": "^16.3.1",
"litemcp": "^0.7.0",
"zod": "^3.22.4"
},
"devDependencies": {
"@types/jest": "^28.1.8",
"@types/node": "^20.17.10",
"jest": "^28.1.3",
"semver": "^6.3.1",
"ts-jest": "^28.0.8",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
},
"author": "Jango Blockchained",
"license": "MIT"
}