package.json•1.02 kB
{
"name": "plugwise-mcp-server",
"version": "1.0.2",
"description": "MCP server for Plugwise integration",
"type": "module",
"main": "dist/index.js",
"bin": {
"plugwise-mcp-server": "./dist/index.js"
},
"files": [
"dist/",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && chmod 755 dist/index.js",
"dev": "tsx src/index.ts",
"start": "node dist/index.js",
"test:all": "tsx scripts/test-all.ts",
"test:read-only": "tsx scripts/test-read-only.ts",
"test:features": "tsx scripts/test-features.ts",
"typecheck": "tsc --noEmit"
},
"keywords": [
"mcp",
"model-context-protocol",
"plugwise"
],
"author": "",
"license": "MIT",
"dependencies": {
"@modelcontextprotocol/sdk": "^1.20.0",
"@types/xml2js": "^0.4.14",
"axios": "^1.12.2",
"dotenv": "^17.2.3",
"xml2js": "^0.6.2",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "^22.10.5",
"tsx": "^4.19.2",
"typescript": "^5.7.2"
}
}