@ganglia/cli-linux-x64 0.5.7

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 +13 -0
  2. package/bin/gl +0 -0
  3. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,13 @@
1
+ # @ganglia/cli-linux-x64
2
+
3
+ Linux x86_64 binary for Ganglia. **Do not install this directly.**
4
+
5
+ Install the parent package instead:
6
+
7
+ ```bash
8
+ npm install -g @ganglia/cli
9
+ ```
10
+
11
+ npm's `optionalDependencies` will pull this package automatically on Linux x64. The wrapper (`@ganglia/cli`) detects your platform and spawns this binary at runtime.
12
+
13
+ https://ganglia.dev
package/bin/gl ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "@ganglia/cli-linux-x64",
3
+ "version": "0.5.7",
4
+ "description": "Linux x86_64 binary for Ganglia. Do not install directly — use @ganglia/cli.",
5
+ "homepage": "https://ganglia.dev",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/Mostafa-M-Hussein/ganglia.git"
9
+ },
10
+ "license": "UNLICENSED",
11
+ "author": "Moado",
12
+ "files": [
13
+ "bin"
14
+ ],
15
+ "os": ["linux"],
16
+ "cpu": ["x64"],
17
+ "engines": {
18
+ "node": ">=18"
19
+ }
20
+ }