@keywaysh/cli 0.3.8 → 0.3.10

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 CHANGED
@@ -14,6 +14,7 @@ No install required. This will authenticate with GitHub, create a vault, and syn
14
14
 
15
15
  ```bash
16
16
  npx @keywaysh/cli pull # Pull secrets to .env
17
+ npx @keywaysh/cli run # Run command with secrets injected
17
18
  npx @keywaysh/cli push # Push .env to vault
18
19
  npx @keywaysh/cli sync # Sync with Vercel/Railway
19
20
  ```
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@keywaysh/cli",
3
- "version": "0.3.8",
3
+ "version": "0.3.10",
4
4
  "description": "GitHub-native secrets management CLI",
5
5
  "bin": {
6
6
  "keyway": "./bin/keyway"
@@ -10,11 +10,11 @@
10
10
  },
11
11
  "repository": {
12
12
  "type": "git",
13
- "url": "git+https://github.com/keywaysh/cli-go.git"
13
+ "url": "git+https://github.com/keywaysh/cli.git"
14
14
  },
15
15
  "homepage": "https://keyway.sh",
16
16
  "bugs": {
17
- "url": "https://github.com/keywaysh/cli-go/issues"
17
+ "url": "https://github.com/keywaysh/cli/issues"
18
18
  },
19
19
  "keywords": [
20
20
  "secrets",
@@ -8,7 +8,7 @@ const os = require("os");
8
8
  const crypto = require("crypto");
9
9
 
10
10
  const VERSION = require("../package.json").version;
11
- const REPO = "keywaysh/cli-go";
11
+ const REPO = "keywaysh/cli";
12
12
  const BINARY_NAME = "keyway";
13
13
 
14
14
  const PLATFORMS = {
@@ -131,7 +131,7 @@ async function main() {
131
131
  console.log("Development version detected, skipping binary download");
132
132
  // Create a placeholder script
133
133
  const placeholder = `#!/bin/sh
134
- echo "Keyway CLI not installed. Run 'make build' in the cli-go directory."
134
+ echo "Keyway CLI not installed. Run 'make build' in the cli directory."
135
135
  exit 1
136
136
  `;
137
137
  fs.writeFileSync(path.join(BIN_DIR, "keyway"), placeholder);