-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1.03 KB
/
package.json
File metadata and controls
38 lines (38 loc) · 1.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
{
"name": "home-assistant-mcp",
"version": "1.0.0",
"description": "Master Control Protocol server for Home Assistant",
"main": "dist/index.js",
"type": "module",
"scripts": {
"start": "node dist/index.js",
"build": "tsc",
"dev": "nodemon --exec node --loader ts-node/esm src/index.ts",
"test": "node --experimental-vm-modules node_modules/jest/bin/jest.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.9.0",
"axios": "^1.6.0",
"dotenv": "^16.3.1",
"express": "^4.18.2",
"fs-extra": "^11.3.0",
"home-assistant-js-websocket": "^9.5.0",
"yaml": "^2.7.1",
"zod": "^3.22.4"
},
"devDependencies": {
"@jest/globals": "^29.7.0",
"@types/express": "^4.17.21",
"@types/fs-extra": "^11.0.4",
"@types/jest": "^29.5.6",
"@types/node": "^20.9.0",
"@types/ws": "^8.18.1",
"axios-mock-adapter": "^1.22.0",
"jest": "^29.7.0",
"nodemon": "^3.0.1",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.2.2",
"ws": "^8.18.1"
}
}