@c6o/czproxy-darwin-arm64 0.0.1-placeholder → 0.1.1

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 +11 -1
  2. package/bin/czproxy +0 -0
  3. package/package.json +12 -4
package/README.md CHANGED
@@ -1 +1,11 @@
1
- Placeholder for @c6o/czproxy-darwin-arm64
1
+ # czproxy — Platform Binary
2
+
3
+ This package contains the pre-built `czproxy` binary for a specific OS/architecture combination. It is installed automatically as an optional dependency of [`@c6o/czproxy`](https://www.npmjs.com/package/@c6o/czproxy).
4
+
5
+ **You should install the main package instead:**
6
+
7
+ ```bash
8
+ npm install -g @c6o/czproxy
9
+ ```
10
+
11
+ See the [@c6o/czproxy README](https://www.npmjs.com/package/@c6o/czproxy) for full documentation.
package/bin/czproxy ADDED
Binary file
package/package.json CHANGED
@@ -1,7 +1,15 @@
1
1
  {
2
2
  "name": "@c6o/czproxy-darwin-arm64",
3
- "version": "0.0.1-placeholder",
4
- "description": "Placeholder real binary published via CI",
5
- "os": ["darwin"],
6
- "cpu": ["arm64"]
3
+ "version": "0.1.1",
4
+ "description": "czproxy native binary for macOS ARM64",
5
+ "os": [
6
+ "darwin"
7
+ ],
8
+ "cpu": [
9
+ "arm64"
10
+ ],
11
+ "type": "module",
12
+ "files": [
13
+ "bin/czproxy"
14
+ ]
7
15
  }