@bobfrankston/lxlan 0.1.16 → 0.1.18

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 (3) hide show
  1. package/index.d.ts +8 -0
  2. package/index.js +8 -0
  3. package/package.json +1 -1
package/index.d.ts CHANGED
@@ -1,3 +1,11 @@
1
+ /**
2
+ * @bobfrankston/lxlan — Platform-agnostic LIFX LAN protocol core.
3
+ *
4
+ * DO NOT import this package directly in application code.
5
+ * Use the platform-specific wrapper instead:
6
+ * - Node.js: @bobfrankston/lxlan-node
7
+ * - Browser: @bobfrankston/lxlan-browser
8
+ */
1
9
  export * from './types.js';
2
10
  export { LxDevice } from './device.js';
3
11
  export { LxClient, LxClientOptions } from './client.js';
package/index.js CHANGED
@@ -1,3 +1,11 @@
1
+ /**
2
+ * @bobfrankston/lxlan — Platform-agnostic LIFX LAN protocol core.
3
+ *
4
+ * DO NOT import this package directly in application code.
5
+ * Use the platform-specific wrapper instead:
6
+ * - Node.js: @bobfrankston/lxlan-node
7
+ * - Browser: @bobfrankston/lxlan-browser
8
+ */
1
9
  export * from './types.js';
2
10
  export { LxDevice } from './device.js';
3
11
  export { LxClient } from './client.js';
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bobfrankston/lxlan",
3
- "version": "0.1.16",
3
+ "version": "0.1.18",
4
4
  "description": "LIFX LAN protocol library for device control via UDP",
5
5
  "type": "module",
6
6
  "main": "index.js",