modbus-rs-darwin-arm64 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 +22 -0
package/README.md
ADDED
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
# `modbus-rs-darwin-arm64`
|
|
2
|
+
|
|
3
|
+
Prebuilt native addon for [`modbus-rs`](https://www.npmjs.com/package/modbus-rs) on macOS Apple Silicon (arm64).
|
|
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,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "modbus-rs-darwin-arm64",
|
|
3
|
+
"version": "0.9.0",
|
|
4
|
+
"os": [
|
|
5
|
+
"darwin"
|
|
6
|
+
],
|
|
7
|
+
"cpu": [
|
|
8
|
+
"arm64"
|
|
9
|
+
],
|
|
10
|
+
"main": "modbus-rs.darwin-arm64.node",
|
|
11
|
+
"files": [
|
|
12
|
+
"modbus-rs.darwin-arm64.node"
|
|
13
|
+
],
|
|
14
|
+
"license": "GPL-3.0-only",
|
|
15
|
+
"engines": {
|
|
16
|
+
"node": ">=20"
|
|
17
|
+
},
|
|
18
|
+
"repository": {
|
|
19
|
+
"type": "git",
|
|
20
|
+
"url": "git+https://github.com/Raghava-Ch/modbus-rs.git"
|
|
21
|
+
}
|
|
22
|
+
}
|