package.json•811 B
{
  "name": "mcp-server-homey",
  "version": "0.1.0",
  "description": "MCP server for interacting with Homey smart home platform",
  "type": "module",
  "main": "dist/index.js",
  "bin": {
    "mcp-server-homey": "dist/index.js"
  },
  "scripts": {
    "build": "tsc",
    "watch": "tsc --watch",
    "lint": "eslint src/**/*.ts",
    "lint:fix": "eslint src/**/*.ts --fix"
  },
  "keywords": [
    "mcp",
    "homey",
    "smart-home",
    "model-context-protocol"
  ],
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.0.0",
    "homey-api": "^3.7.1"
  },
  "devDependencies": {
    "@types/node": "^22.0.0",
    "@typescript-eslint/eslint-plugin": "^8.46.0",
    "@typescript-eslint/parser": "^8.46.0",
    "eslint": "^9.37.0",
    "typescript": "^5.6.0"
  },
  "engines": {
    "node": ">=18"
  }
}