@ziex/cli-linux-arm64 0.1.0-dev.864 → 0.1.0-dev.928
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 +28 -0
- package/bin/zx +0 -0
- package/package.json +2 -2
package/README.md
ADDED
|
@@ -0,0 +1,28 @@
|
|
|
1
|
+
# @ziex/cli
|
|
2
|
+
|
|
3
|
+
Ziex CLI distribution via NPM.
|
|
4
|
+
|
|
5
|
+
## Usage
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
# Run directly
|
|
9
|
+
npx @ziex/cli version
|
|
10
|
+
bunx @ziex/cli version
|
|
11
|
+
|
|
12
|
+
# Or install globally
|
|
13
|
+
npm install -g @ziex/cli
|
|
14
|
+
zig version
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
## How it works
|
|
18
|
+
|
|
19
|
+
The `@ziex/cli` package resolves the correct native binary for your platform via optional dependencies:
|
|
20
|
+
|
|
21
|
+
| Package | Platform |
|
|
22
|
+
|---------|----------|
|
|
23
|
+
| `@ziex/cli-darwin-arm64` | macOS Apple Silicon |
|
|
24
|
+
| `@ziex/cli-darwin-x64` | macOS Intel |
|
|
25
|
+
| `@ziex/cli-linux-x64` | Linux x64 |
|
|
26
|
+
| `@ziex/cli-linux-arm64` | Linux ARM64 |
|
|
27
|
+
| `@ziex/cli-win32-x64` | Windows x64 |
|
|
28
|
+
| `@ziex/cli-win32-arm64` | Windows ARM64 |
|
package/bin/zx
CHANGED
|
Binary file
|
package/package.json
CHANGED