candor-cli 0.1.0-darwin-arm64

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 +15 -0
  2. package/bin/candor +0 -0
  3. package/package.json +20 -0
package/README.md ADDED
@@ -0,0 +1,15 @@
1
+ # candor-cli
2
+
3
+ This package installs the `candor` command for Candor.
4
+
5
+ Candor is a finance substrate for agents. The npm package is a thin launcher
6
+ that resolves a precompiled macOS binary from platform-specific optional
7
+ dependencies.
8
+
9
+ ```sh
10
+ npm install -g candor-cli
11
+ candor version
12
+ candor setup
13
+ ```
14
+
15
+ Version: 0.1.0
package/bin/candor ADDED
Binary file
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "candor-cli",
3
+ "version": "0.1.0-darwin-arm64",
4
+ "description": "Candor CLI binary for darwin-arm64.",
5
+ "license": "UNLICENSED",
6
+ "homepage": "https://candor.money",
7
+ "os": [
8
+ "darwin"
9
+ ],
10
+ "cpu": [
11
+ "arm64"
12
+ ],
13
+ "files": [
14
+ "bin",
15
+ "README.md"
16
+ ],
17
+ "publishConfig": {
18
+ "access": "public"
19
+ }
20
+ }