-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
44 lines (44 loc) · 928 Bytes
/
package.json
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
39
40
41
42
43
44
{
"name": "homeassistant-ws",
"version": "0.2.3",
"license": "MIT",
"description": "Client for Homeassistant's websocket API",
"keywords": [
"homeassistant",
"websocket",
"hass",
"ha",
"smart",
"home",
"api",
"hassio"
],
"homepage": "https://github.com/filp/homeassistant-ws",
"main": "build/index.js",
"types": "build/index.d.ts",
"bugs": {
"url": "https://github.com/filp/homeassistant-ws/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/filp/homeassistant-ws.git"
},
"scripts": {
"build": "yarn prepare",
"prepare": "tsc"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/node": "^15.6.0",
"prettier": "^2.3.0",
"typescript": "^4.2.4"
},
"dependencies": {
"isomorphic-ws": "^4.0.1",
"ws": "^8.0.0"
},
"optionalDependencies": {
"buffer": "^5.6.0",
"events": "^3.1.0"
}
}