hamlib 0.1.14 → 0.1.16
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 +2 -2
- package/package.json +4 -3
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/
|
|
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.
|
|
3
|
+
"version": "0.1.16",
|
|
4
4
|
"description": "Node.js wrapper for hamlib radio control library",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "lib/index.mjs",
|
|
@@ -12,7 +12,6 @@
|
|
|
12
12
|
"types": "./index.d.ts"
|
|
13
13
|
}
|
|
14
14
|
},
|
|
15
|
-
"gypfile": true,
|
|
16
15
|
"license": "LGPL",
|
|
17
16
|
"repository": {
|
|
18
17
|
"type": "git",
|
|
@@ -34,9 +33,10 @@
|
|
|
34
33
|
"index.d.ts",
|
|
35
34
|
"binding.gyp",
|
|
36
35
|
"COPYING",
|
|
37
|
-
"
|
|
36
|
+
"README.md"
|
|
38
37
|
],
|
|
39
38
|
"scripts": {
|
|
39
|
+
"install": "node-gyp-build",
|
|
40
40
|
"build": "node-gyp configure && node-gyp build",
|
|
41
41
|
"rebuild": "node-gyp rebuild",
|
|
42
42
|
"clean": "node-gyp clean",
|
|
@@ -55,6 +55,7 @@
|
|
|
55
55
|
"node-gyp": "^9.4.0",
|
|
56
56
|
"prebuildify": "^5.0.0"
|
|
57
57
|
},
|
|
58
|
+
"preferUnplugged": true,
|
|
58
59
|
"engines": {
|
|
59
60
|
"node": ">=12.0.0"
|
|
60
61
|
},
|