@relayfile/cli-linux-x64 0.10.56
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.
- package/README.md +16 -0
- package/bin/.gitkeep +0 -0
- package/package.json +23 -0
package/README.md
ADDED
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
# @relayfile/cli-linux-x64
|
|
2
|
+
|
|
3
|
+
Prebuilt `relayfile-cli` binary (`bin/relayfile-cli`) for **Linux (x64)**.
|
|
4
|
+
|
|
5
|
+
This package is installed automatically as an optional dependency of
|
|
6
|
+
[`@relayfile/sdk`](https://www.npmjs.com/package/@relayfile/sdk). You do not
|
|
7
|
+
need to depend on it directly. The SDK resolves the correct platform binary at
|
|
8
|
+
runtime via `require.resolve` (see `@relayfile/sdk/relay-cli`), which is how
|
|
9
|
+
both `relayfile <cmd>` and `agent-relay file <cmd>` find the CLI.
|
|
10
|
+
|
|
11
|
+
It carries no install script and downloads nothing: npm installs only the
|
|
12
|
+
package matching the host's `os`/`cpu`, so the binary arrives with registry
|
|
13
|
+
integrity metadata and the install works offline and in CI.
|
|
14
|
+
|
|
15
|
+
See the [relayfile repository](https://github.com/AgentWorkforce/relayfile)
|
|
16
|
+
for source and build tooling.
|
package/bin/.gitkeep
ADDED
|
File without changes
|
package/package.json
ADDED
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@relayfile/cli-linux-x64",
|
|
3
|
+
"version": "0.10.56",
|
|
4
|
+
"description": "relayfile-cli binary for linux x64. Installed automatically as an optional dependency of @relayfile/sdk.",
|
|
5
|
+
"files": [
|
|
6
|
+
"bin"
|
|
7
|
+
],
|
|
8
|
+
"repository": {
|
|
9
|
+
"type": "git",
|
|
10
|
+
"url": "git+https://github.com/AgentWorkforce/relayfile.git",
|
|
11
|
+
"directory": "packages/cli-linux-x64"
|
|
12
|
+
},
|
|
13
|
+
"license": "Apache-2.0",
|
|
14
|
+
"publishConfig": {
|
|
15
|
+
"access": "public"
|
|
16
|
+
},
|
|
17
|
+
"os": [
|
|
18
|
+
"linux"
|
|
19
|
+
],
|
|
20
|
+
"cpu": [
|
|
21
|
+
"x64"
|
|
22
|
+
]
|
|
23
|
+
}
|