@digital-alchemy/hass 0.3.3 → 0.3.4
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +3 -2
- package/package.json +5 -5
package/README.md
CHANGED
|
@@ -2,8 +2,8 @@
|
|
|
2
2
|
|
|
3
3
|
This repository contains generic extensions for interacting with Home Assistant, including websocket & REST API adapters, entity & event management, backup workflows, and more.
|
|
4
4
|
|
|
5
|
-
|
|
6
|
-
|
|
5
|
+
- Extended docs: https://docs.digital-alchemy.app/Hass
|
|
6
|
+
- Discord https://discord.digital-alchemy.app
|
|
7
7
|
|
|
8
8
|
## ⭐ Features
|
|
9
9
|
### 📝 First-class Editor Experiences
|
|
@@ -27,6 +27,7 @@ Add as a dependency, and add to your imports. Nice and easy
|
|
|
27
27
|
npm i @digital-alchemy/hass
|
|
28
28
|
```
|
|
29
29
|
|
|
30
|
+
**Add to code**
|
|
30
31
|
```typescript
|
|
31
32
|
import { LIB_HASS } from "@digital-alchemy/hass";
|
|
32
33
|
|
package/package.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@digital-alchemy/hass",
|
|
3
3
|
"repository": "https://github.com/Digital-Alchemy-TS/hass",
|
|
4
|
-
"homepage": "https://docs.digital-alchemy.app/
|
|
5
|
-
"version": "0.3.
|
|
4
|
+
"homepage": "https://docs.digital-alchemy.app/Hass",
|
|
5
|
+
"version": "0.3.4",
|
|
6
6
|
"scripts": {
|
|
7
7
|
"build": "rm -rf dist/; tsc",
|
|
8
8
|
"lint": "eslint src",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
},
|
|
25
25
|
"license": "MIT",
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@digital-alchemy/core": "^0.3.
|
|
27
|
+
"@digital-alchemy/core": "^0.3.6",
|
|
28
28
|
"dayjs": "^1.11.10",
|
|
29
29
|
"prom-client": "^15.1.0",
|
|
30
30
|
"ws": "^8.16.0"
|
|
@@ -58,7 +58,7 @@
|
|
|
58
58
|
"prettier": "^3.2.5",
|
|
59
59
|
"ts-jest": "^29.1.2",
|
|
60
60
|
"tsx": "^4.7.1",
|
|
61
|
-
"type-fest": "^4.13.
|
|
62
|
-
"typescript": "^5.4.
|
|
61
|
+
"type-fest": "^4.13.1",
|
|
62
|
+
"typescript": "^5.4.3"
|
|
63
63
|
}
|
|
64
64
|
}
|