@neosh/cli-linux-arm64 0.0.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 +11 -0
- package/bin/.gitkeep +0 -0
- package/package.json +15 -0
package/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# @neosh/cli-linux-arm64
|
|
2
|
+
|
|
3
|
+
The neosh binary for Linux on ARM64.
|
|
4
|
+
|
|
5
|
+
You do not install this directly. It is an optional dependency of
|
|
6
|
+
[`neosh`](https://www.npmjs.com/package/neosh), and npm picks the one package matching your
|
|
7
|
+
platform out of the four.
|
|
8
|
+
|
|
9
|
+
```sh
|
|
10
|
+
npm install -g neosh
|
|
11
|
+
```
|
package/bin/.gitkeep
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@neosh/cli-linux-arm64",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"description": "The neosh binary for Linux on ARM64. Installed for you by the `neosh` package.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"homepage": "https://github.com/neoswarm/neosh",
|
|
7
|
+
"repository": {
|
|
8
|
+
"type": "git",
|
|
9
|
+
"url": "git+https://github.com/neoswarm/neosh.git",
|
|
10
|
+
"directory": "npm/neosh"
|
|
11
|
+
},
|
|
12
|
+
"os": ["linux"],
|
|
13
|
+
"cpu": ["arm64"],
|
|
14
|
+
"files": ["bin", "README.md", "!._*"]
|
|
15
|
+
}
|