@ixla/heso-linux-arm64 0.0.2
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 +11 -0
- package/bin/heso +0 -0
- package/package.json +21 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @ixla/heso-linux-arm64
|
|
2
|
+
|
|
3
|
+
Linux ARM64 (aarch64) 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
ADDED
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@ixla/heso-linux-arm64",
|
|
3
|
+
"version": "0.0.2",
|
|
4
|
+
"description": "Linux ARM64 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
|
+
"linux"
|
|
13
|
+
],
|
|
14
|
+
"cpu": [
|
|
15
|
+
"arm64"
|
|
16
|
+
],
|
|
17
|
+
"files": [
|
|
18
|
+
"bin/heso",
|
|
19
|
+
"README.md"
|
|
20
|
+
]
|
|
21
|
+
}
|