icom-wlan-node 0.1.0 → 0.1.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 +3 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -1,4 +1,4 @@
1
- # @boybook/icom-wlan
1
+ # icom-wlan-node
2
2
 
3
3
  Icom WLAN (UDP) protocol implementation in Node.js + TypeScript, featuring:
4
4
 
@@ -16,7 +16,7 @@ Acknowledgements: Thanks to FT8CN (https://github.com/N0BOY/FT8CN) for sharing p
16
16
  ## Install
17
17
 
18
18
  ```
19
- npm install @boybook/icom-wlan
19
+ npm install icom-wlan-node
20
20
  ```
21
21
 
22
22
  Build from source:
@@ -29,7 +29,7 @@ npm run build
29
29
  ## Quick Start
30
30
 
31
31
  ```ts
32
- import { IcomControl, AUDIO_RATE } from '@boybook/icom-wlan';
32
+ import { IcomControl, AUDIO_RATE } from 'icom-wlan-node';
33
33
 
34
34
  const rig = new IcomControl({
35
35
  control: { ip: '192.168.1.50', port: 50001 },
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "icom-wlan-node",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Icom WLAN (CI‑V, audio) protocol implementation for Node.js/TypeScript.",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",