modbus-rs-linux-x64-gnu 0.9.0
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 +9 -0
- package/package.json +25 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# `modbus-rs-linux-x64-gnu`
|
|
2
|
+
|
|
3
|
+
Prebuilt native addon for [`modbus-rs`](https://www.npmjs.com/package/modbus-rs) on Linux x86_64 (glibc).
|
|
4
|
+
|
|
5
|
+
Installed automatically by `modbus-rs` via `optionalDependencies`. You do not need to install this package directly.
|
|
6
|
+
|
|
7
|
+
License: GPL-3.0-only
|
|
8
|
+
|
|
9
|
+
Commercial licenses are also available for proprietary use; contact ch.raghava44@gmail.com.
|
package/package.json
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "modbus-rs-linux-x64-gnu",
|
|
3
|
+
"version": "0.9.0",
|
|
4
|
+
"os": [
|
|
5
|
+
"linux"
|
|
6
|
+
],
|
|
7
|
+
"cpu": [
|
|
8
|
+
"x64"
|
|
9
|
+
],
|
|
10
|
+
"main": "modbus-rs.linux-x64-gnu.node",
|
|
11
|
+
"files": [
|
|
12
|
+
"modbus-rs.linux-x64-gnu.node"
|
|
13
|
+
],
|
|
14
|
+
"license": "GPL-3.0-only",
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20"
|
|
17
|
+
},
|
|
18
|
+
"libc": [
|
|
19
|
+
"glibc"
|
|
20
|
+
],
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "git+https://github.com/Raghava-Ch/modbus-rs.git"
|
|
24
|
+
}
|
|
25
|
+
}
|