awtrix-ts 1.3.0 → 1.3.1

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.
Files changed (2) hide show
  1. package/README.md +6 -0
  2. package/package.json +16 -2
package/README.md CHANGED
@@ -6,6 +6,12 @@ TS wrapper for [Awtrix API](https://blueforcer.github.io/awtrix3/#/api).
6
6
 
7
7
  The `Awtrix` class provides a TypeScript interface for interacting with the Awtrix device API. It supports device control, settings management, notifications, app switching, indicators, moodlight, and more.
8
8
 
9
+ ## Installation
10
+
11
+ ```bash
12
+ npm i --save awtrix-ts
13
+ ```
14
+
9
15
  ### Usage
10
16
 
11
17
  ```typescript
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "awtrix-ts",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "TypeScript API for Awtrix LED Matrix Display",
5
5
  "repository": {
6
6
  "type": "git",
@@ -27,5 +27,19 @@
27
27
  "eslint": "^9.39.2",
28
28
  "eslint-config": "github:7digital/eslint-config",
29
29
  "typescript": "^5.9.3"
30
- }
30
+ },
31
+ "keywords": [
32
+ "awtrix",
33
+ "led",
34
+ "matrix",
35
+ "api",
36
+ "typescript",
37
+ "clock",
38
+ "ulanzi",
39
+ "tc001",
40
+ "smart display",
41
+ "iot",
42
+ "pixel-clock",
43
+ "pixel-display"
44
+ ]
31
45
  }