-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
37 lines (37 loc) · 964 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
{
"name": "homeassistant-react-hooks",
"version": "0.1.14",
"description": "A library providing hooks to easily integrate data from home assistant",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"repository": "https://github.com/alvesvaren/homeassistant-react-hooks",
"author": "Alve Svarén",
"license": "MIT",
"files": [
"dist"
],
"keywords": [
"homeassistant",
"react-hooks",
"react",
"hass"
],
"scripts": {
"build": "tsc",
"prepublish": "yarn build"
},
"devDependencies": {
"@types/events": "^3.0.0",
"@types/react": "^18.2.15",
"@types/ws": "^8.5.5",
"typescript": "^5.1.6"
},
"dependencies": {
"events": "^3.3.0",
"homeassistant-ws": "^0.2.2",
"object-assign": "^4.1.1",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"usehooks-ts": "^2.9.1"
}
}