@mwguerra/hull-win32-x64 0.1.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/bin/hull-host.exe +0 -0
- package/bin/libcrypto-3-x64.dll +0 -0
- package/bin/libssl-3-x64.dll +0 -0
- package/index.js +7 -0
- package/package.json +22 -0
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/index.js
ADDED
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
import { fileURLToPath } from "node:url";
|
|
2
|
+
|
|
3
|
+
// Absolute path to the prebuilt host executable and the directory holding it
|
|
4
|
+
// (the directory also contains the OpenSSL DLLs the host needs at runtime).
|
|
5
|
+
export const hostBinary = fileURLToPath(new URL("./bin/hull-host.exe", import.meta.url));
|
|
6
|
+
export const secureBinary = fileURLToPath(new URL("./bin/hull-host-secure.exe", import.meta.url));
|
|
7
|
+
export const hostDir = fileURLToPath(new URL("./bin/", import.meta.url));
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@mwguerra/hull-win32-x64",
|
|
3
|
+
"version": "0.1.0",
|
|
4
|
+
"description": "Prebuilt Hull host binary for Windows x64 (installed automatically by @mwguerra/hull on matching machines).",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "index.js",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./index.js"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"index.js",
|
|
12
|
+
"bin"
|
|
13
|
+
],
|
|
14
|
+
"os": [
|
|
15
|
+
"win32"
|
|
16
|
+
],
|
|
17
|
+
"cpu": [
|
|
18
|
+
"x64"
|
|
19
|
+
],
|
|
20
|
+
"author": "mwguerra",
|
|
21
|
+
"license": "MIT"
|
|
22
|
+
}
|