@ixla/heso-win32-x64 0.0.1

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.
Files changed (3) hide show
  1. package/README.md +11 -0
  2. package/bin/heso.exe +0 -0
  3. package/package.json +21 -0
package/README.md ADDED
@@ -0,0 +1,11 @@
1
+ # @ixla/heso-win32-x64
2
+
3
+ Windows x86_64 binary for heso. **Do not install directly** — install
4
+ [`@ixla/heso`](https://www.npmjs.com/package/@ixla/heso) and npm will
5
+ pull this package in as an optional dependency.
6
+
7
+ See [https://github.com/blank3rs/heso](https://github.com/blank3rs/heso) for the source.
8
+
9
+ ## License
10
+
11
+ Dual-licensed under MIT and Apache-2.0.
package/bin/heso.exe ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,21 @@
1
+ {
2
+ "name": "@ixla/heso-win32-x64",
3
+ "version": "0.0.1",
4
+ "description": "Windows x86_64 binary for @ixla/heso. Do not install directly.",
5
+ "license": "MIT OR Apache-2.0",
6
+ "homepage": "https://www.heso.ca",
7
+ "repository": {
8
+ "type": "git",
9
+ "url": "git+https://github.com/blank3rs/heso.git"
10
+ },
11
+ "os": [
12
+ "win32"
13
+ ],
14
+ "cpu": [
15
+ "x64"
16
+ ],
17
+ "files": [
18
+ "bin/heso.exe",
19
+ "README.md"
20
+ ]
21
+ }