skydive-cli-linux-x64 0.0.0 → 0.5.0-beta.35

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 +5 -0
  2. package/bin/skydive +0 -0
  3. package/package.json +23 -1
package/README.md ADDED
@@ -0,0 +1,5 @@
1
+ # skydive-cli-linux-x64
2
+
3
+ Prebuilt Skydive CLI binary for linux/x64.
4
+
5
+ This package is installed automatically as an optional dependency of [`skydive-cli`](https://www.npmjs.com/package/skydive-cli). Install `skydive-cli` instead of this package.
package/bin/skydive ADDED
Binary file
package/package.json CHANGED
@@ -1 +1,23 @@
1
- {"name":"skydive-cli-linux-x64","version":"0.0.0","license":"MIT","os":["linux"],"cpu":["x64"],"description":"Placeholder. Real releases are published by CI."}
1
+ {
2
+ "name": "skydive-cli-linux-x64",
3
+ "version": "0.5.0-beta.35",
4
+ "description": "Skydive CLI prebuilt binary for linux/x64. Installed automatically as an optional dependency of skydive-cli; do not install directly.",
5
+ "homepage": "https://skydive.com",
6
+ "license": "MIT",
7
+ "os": [
8
+ "linux"
9
+ ],
10
+ "cpu": [
11
+ "x64"
12
+ ],
13
+ "exports": {
14
+ "./bin": "./bin/skydive"
15
+ },
16
+ "files": [
17
+ "bin"
18
+ ],
19
+ "publishConfig": {
20
+ "access": "public",
21
+ "registry": "https://registry.npmjs.org"
22
+ }
23
+ }