hamlib 0.1.14 → 0.1.15

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 +2 -2
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -25,7 +25,7 @@ The package will automatically use precompiled binaries if available for your pl
25
25
  For faster installation or offline environments, you can manually install precompiled binaries:
26
26
 
27
27
  1. **Download Prebuilds**: Go to [Releases](../../releases) and download `node-hamlib-prebuilds.zip`
28
- 2. **Extract**: Unzip to your project's `node_modules/node-hamlib/prebuilds/` directory
28
+ 2. **Extract**: Unzip to your project's `node_modules/hamlib/prebuilds/` directory
29
29
  3. **Install**: Run `npm install node-hamlib --ignore-scripts`
30
30
 
31
31
  **Supported Prebuilt Platforms:**
@@ -321,4 +321,4 @@ LGPL - see [COPYING](COPYING) file for details.
321
321
 
322
322
  - [Hamlib Project](https://hamlib.github.io/)
323
323
  - [Supported Radios](https://github.com/Hamlib/Hamlib/wiki/Supported-Radios)
324
- - [rigctl Documentation](https://hamlib.github.io/manpages/rigctl.html)
324
+ - [rigctl Documentation](https://hamlib.github.io/manpages/rigctl.html)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "hamlib",
3
- "version": "0.1.14",
3
+ "version": "0.1.15",
4
4
  "description": "Node.js wrapper for hamlib radio control library",
5
5
  "main": "index.js",
6
6
  "module": "lib/index.mjs",
@@ -34,9 +34,10 @@
34
34
  "index.d.ts",
35
35
  "binding.gyp",
36
36
  "COPYING",
37
- "Readme.md"
37
+ "README.md"
38
38
  ],
39
39
  "scripts": {
40
+ "install": "node-gyp-build",
40
41
  "build": "node-gyp configure && node-gyp build",
41
42
  "rebuild": "node-gyp rebuild",
42
43
  "clean": "node-gyp clean",
@@ -55,6 +56,7 @@
55
56
  "node-gyp": "^9.4.0",
56
57
  "prebuildify": "^5.0.0"
57
58
  },
59
+ "preferUnplugged": true,
58
60
  "engines": {
59
61
  "node": ">=12.0.0"
60
62
  },