@ziex/cli-darwin-x64 0.1.0-test.1 → 0.1.0-test.930

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 +28 -0
  2. package/bin/zx +0 -0
  3. 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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@ziex/cli-darwin-x64",
3
- "version": "0.1.0-test.1",
3
+ "version": "0.1.0-test.930",
4
4
  "description": "ziex CLI binary for macOS x64 (Intel)",
5
5
  "os": [
6
6
  "darwin"
@@ -18,4 +18,4 @@
18
18
  },
19
19
  "license": "MIT",
20
20
  "preferUnplugged": true
21
- }
21
+ }