@jfrog-boost/boost-darwin-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.
Files changed (2) hide show
  1. package/README.md +15 -0
  2. package/package.json +10 -0
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # @jfrog-boost/boost-darwin-arm64
2
+
3
+ Placeholder package that reserves the name for the Boost CLI darwin-arm64 binary.
4
+
5
+ Install the meta package once real releases are published:
6
+
7
+ ```bash
8
+ npm install -g @jfrog-boost/boost
9
+ ```
10
+
11
+ Until then, use:
12
+
13
+ ```bash
14
+ curl -fsSL https://boost.jfrog.com/install.sh | bash
15
+ ```
package/package.json ADDED
@@ -0,0 +1,10 @@
1
+ {
2
+ "name": "@jfrog-boost/boost-darwin-arm64",
3
+ "version": "0.0.0",
4
+ "description": "Placeholder for Boost CLI binary (darwin-arm64). Real binaries ship on semver releases.",
5
+ "license": "UNLICENSED",
6
+ "os": ["darwin"],
7
+ "cpu": ["arm64"],
8
+ "files": ["README.md"],
9
+ "publishConfig": { "access": "public" }
10
+ }