@mwguerra/hull-linux-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 ADDED
Binary file
package/index.js ADDED
@@ -0,0 +1,5 @@
1
+ import { fileURLToPath } from "node:url";
2
+
3
+ export const hostBinary = fileURLToPath(new URL("./bin/hull-host", import.meta.url));
4
+ export const secureBinary = fileURLToPath(new URL("./bin/hull-host-secure", import.meta.url));
5
+ export const hostDir = fileURLToPath(new URL("./bin/", import.meta.url));
package/package.json ADDED
@@ -0,0 +1,13 @@
1
+ {
2
+ "name": "@mwguerra/hull-linux-x64",
3
+ "version": "0.1.0",
4
+ "description": "Prebuilt Hull host binary for Linux x64 (installed automatically by @mwguerra/hull on matching machines).",
5
+ "type": "module",
6
+ "main": "index.js",
7
+ "exports": { ".": "./index.js" },
8
+ "files": ["index.js", "bin"],
9
+ "os": ["linux"],
10
+ "cpu": ["x64"],
11
+ "author": "mwguerra",
12
+ "license": "MIT"
13
+ }