hamlib 0.4.0 → 0.4.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.
- package/lib/spectrum.d.ts +0 -2
- package/package.json +14 -4
- package/prebuilds/darwin-arm64/libhamlib.4.dylib +0 -0
- package/prebuilds/darwin-arm64/node.napi.node +0 -0
- package/prebuilds/darwin-x64/libhamlib.4.dylib +0 -0
- package/prebuilds/darwin-x64/node.napi.node +0 -0
- package/prebuilds/linux-arm64/libhamlib.so +0 -0
- package/prebuilds/linux-arm64/libhamlib.so.4 +0 -0
- package/prebuilds/linux-arm64/libhamlib.so.4.0.7 +0 -0
- package/prebuilds/linux-x64/libhamlib.so +0 -0
- package/prebuilds/linux-x64/libhamlib.so.4 +0 -0
- package/prebuilds/linux-x64/libhamlib.so.4.0.7 +0 -0
- package/prebuilds/win32-x64/hamlib_shim.dll +0 -0
- package/prebuilds/win32-x64/node.napi.node +0 -0
- package/spectrum.d.ts +2 -0
- package/spectrum.js +1 -0
- package/spectrum.mjs +2 -0
package/lib/spectrum.d.ts
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "hamlib",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Node.js bindings for Hamlib rig control with official spectrum streaming support",
|
|
5
5
|
"main": "index.js",
|
|
6
6
|
"module": "lib/index.mjs",
|
|
@@ -12,9 +12,16 @@
|
|
|
12
12
|
"types": "./index.d.ts"
|
|
13
13
|
},
|
|
14
14
|
"./spectrum": {
|
|
15
|
-
"import": "./
|
|
16
|
-
"require": "./
|
|
17
|
-
"types": "./
|
|
15
|
+
"import": "./spectrum.mjs",
|
|
16
|
+
"require": "./spectrum.js",
|
|
17
|
+
"types": "./spectrum.d.ts"
|
|
18
|
+
}
|
|
19
|
+
},
|
|
20
|
+
"typesVersions": {
|
|
21
|
+
"*": {
|
|
22
|
+
"spectrum": [
|
|
23
|
+
"spectrum.d.ts"
|
|
24
|
+
]
|
|
18
25
|
}
|
|
19
26
|
},
|
|
20
27
|
"gypfile": true,
|
|
@@ -38,6 +45,9 @@
|
|
|
38
45
|
"docs/",
|
|
39
46
|
"index.js",
|
|
40
47
|
"index.d.ts",
|
|
48
|
+
"spectrum.js",
|
|
49
|
+
"spectrum.mjs",
|
|
50
|
+
"spectrum.d.ts",
|
|
41
51
|
"binding.gyp",
|
|
42
52
|
"COPYING",
|
|
43
53
|
"README.md"
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/spectrum.d.ts
ADDED
package/spectrum.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('./lib/spectrum.js');
|
package/spectrum.mjs
ADDED