@fulgur-rs/cli-linux-arm64 0.0.0 → 0.5.13
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 +20 -0
- package/bin/fulgur +0 -0
- package/package.json +10 -4
package/README.md
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
# @fulgur-rs/cli-linux-arm64
|
|
2
|
+
|
|
3
|
+
Platform-specific binary for [`@fulgur-rs/cli`](https://www.npmjs.com/package/@fulgur-rs/cli)
|
|
4
|
+
on Linux arm64.
|
|
5
|
+
|
|
6
|
+
This package is installed automatically as an optional dependency of the meta
|
|
7
|
+
package. **Do not install it directly.** Install the meta package instead:
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
npm i -g @fulgur-rs/cli
|
|
11
|
+
```
|
|
12
|
+
|
|
13
|
+
See the [meta package README](https://www.npmjs.com/package/@fulgur-rs/cli) for
|
|
14
|
+
usage and documentation.
|
|
15
|
+
|
|
16
|
+
## License
|
|
17
|
+
|
|
18
|
+
Dual-licensed under [MIT](https://github.com/fulgur-rs/fulgur/blob/main/LICENSE-MIT)
|
|
19
|
+
or [Apache-2.0](https://github.com/fulgur-rs/fulgur/blob/main/LICENSE-APACHE)
|
|
20
|
+
at your option.
|
package/bin/fulgur
ADDED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@fulgur-rs/cli-linux-arm64",
|
|
3
|
-
"version": "0.
|
|
3
|
+
"version": "0.5.13",
|
|
4
4
|
"description": "fulgur CLI binary for Linux arm64",
|
|
5
5
|
"license": "MIT OR Apache-2.0",
|
|
6
6
|
"repository": {
|
|
@@ -8,7 +8,13 @@
|
|
|
8
8
|
"url": "https://github.com/fulgur-rs/fulgur.git",
|
|
9
9
|
"directory": "packages/npm/linux-arm64"
|
|
10
10
|
},
|
|
11
|
-
"os": [
|
|
12
|
-
|
|
13
|
-
|
|
11
|
+
"os": [
|
|
12
|
+
"linux"
|
|
13
|
+
],
|
|
14
|
+
"cpu": [
|
|
15
|
+
"arm64"
|
|
16
|
+
],
|
|
17
|
+
"files": [
|
|
18
|
+
"bin/"
|
|
19
|
+
]
|
|
14
20
|
}
|