@sys9/chord-cli 0.1.0-darwin-x64
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 +18 -0
- package/package.json +22 -0
- package/vendor/darwin_amd64/chord +0 -0
package/README.md
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# @sys9/chord-cli
|
|
2
|
+
|
|
3
|
+
`@sys9/chord-cli` packages the native `chord` binary for npm. It is intended to be launched through `@sys9/cli`:
|
|
4
|
+
|
|
5
|
+
```sh
|
|
6
|
+
npm install -g @sys9/cli
|
|
7
|
+
sys9 chord version
|
|
8
|
+
sys9 chord daemon run --token <host-token>
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
Direct installation also works when needed:
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
npm install -g @sys9/chord-cli
|
|
15
|
+
chord version
|
|
16
|
+
```
|
|
17
|
+
|
|
18
|
+
Release builds publish this root package plus platform-specific optional dependencies. The root package only contains the Node launcher; the native binary lives in the matching platform package.
|
package/package.json
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@sys9/chord-cli",
|
|
3
|
+
"version": "0.1.0-darwin-x64",
|
|
4
|
+
"description": "Chord CLI package used by @sys9/cli",
|
|
5
|
+
"license": "UNLICENSED",
|
|
6
|
+
"os": [
|
|
7
|
+
"darwin"
|
|
8
|
+
],
|
|
9
|
+
"cpu": [
|
|
10
|
+
"x64"
|
|
11
|
+
],
|
|
12
|
+
"files": [
|
|
13
|
+
"vendor"
|
|
14
|
+
],
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/sys9-ai/chord.git"
|
|
18
|
+
},
|
|
19
|
+
"engines": {
|
|
20
|
+
"node": ">=16"
|
|
21
|
+
}
|
|
22
|
+
}
|
|
Binary file
|