@koromix/koffi-openbsd-arm64 3.3.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 +6 -0
- package/index.js +1 -0
- package/openbsd_arm64/koffi.node +0 -0
- package/package.json +24 -0
package/README.md
ADDED
|
@@ -0,0 +1,6 @@
|
|
|
1
|
+
# @koromix/koffi-openbsd-arm64
|
|
2
|
+
|
|
3
|
+
This contains the openbsd-arm64 binaries for [Koffi](https://koffi.dev), a fast and and easy-to-use dynamic C FFI (foreign function interface) module for Node.js.
|
|
4
|
+
|
|
5
|
+
> [!NOTE]
|
|
6
|
+
> Do not install this package directly, use `npm install koffi` instead.
|
package/index.js
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
module.exports = require('./openbsd_arm64/koffi.node');
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@koromix/koffi-openbsd-arm64",
|
|
3
|
+
"version": "3.3.0",
|
|
4
|
+
"description": "Fast and easy-to-use dynamic C FFI (foreign function interface) for Node.js (@koromix/koffi-openbsd-arm64)",
|
|
5
|
+
"author": {
|
|
6
|
+
"name": "Niels Martignène",
|
|
7
|
+
"email": "niels.martignene@protonmail.com",
|
|
8
|
+
"url": "https://koromix.dev/"
|
|
9
|
+
},
|
|
10
|
+
"homepage": "https://koffi.dev/",
|
|
11
|
+
"repository": {
|
|
12
|
+
"type": "git",
|
|
13
|
+
"url": "https://github.com/Koromix/koffi"
|
|
14
|
+
},
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"funding": "https://liberapay.com/Koromix",
|
|
17
|
+
"main": "./index.js",
|
|
18
|
+
"os": [
|
|
19
|
+
"openbsd"
|
|
20
|
+
],
|
|
21
|
+
"cpu": [
|
|
22
|
+
"arm64"
|
|
23
|
+
]
|
|
24
|
+
}
|