candor-cli 0.1.0-darwin-x64 → 0.1.0

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 (2) hide show
  1. package/bin/candor +0 -0
  2. package/package.json +18 -8
package/bin/candor CHANGED
Binary file
package/package.json CHANGED
@@ -1,19 +1,29 @@
1
1
  {
2
2
  "name": "candor-cli",
3
- "version": "0.1.0-darwin-x64",
4
- "description": "Candor CLI binary for darwin-x64.",
3
+ "version": "0.1.0",
4
+ "description": "Candor CLI launcher for the candor command.",
5
+ "keywords": [
6
+ "agent",
7
+ "candor",
8
+ "cli",
9
+ "finance"
10
+ ],
5
11
  "license": "UNLICENSED",
6
12
  "homepage": "https://candor.money",
7
- "os": [
8
- "darwin"
9
- ],
10
- "cpu": [
11
- "x64"
12
- ],
13
+ "bin": {
14
+ "candor": "bin/candor"
15
+ },
13
16
  "files": [
14
17
  "bin",
15
18
  "README.md"
16
19
  ],
20
+ "optionalDependencies": {
21
+ "candor-cli-darwin-arm64": "npm:candor-cli@0.1.0-darwin-arm64",
22
+ "candor-cli-darwin-x64": "npm:candor-cli@0.1.0-darwin-x64"
23
+ },
24
+ "engines": {
25
+ "node": ">=20"
26
+ },
17
27
  "publishConfig": {
18
28
  "access": "public"
19
29
  }