@passwd/passwd-agent-cli 1.5.0 → 1.5.1

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/dist/index.js +1 -1
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -13,7 +13,7 @@ const program = new Command();
13
13
  program
14
14
  .name("passwd-agent")
15
15
  .description("Agent-safe CLI for passwd.team — no command exposes raw credential values")
16
- .version("1.5.0")
16
+ .version("1.5.1")
17
17
  .enablePositionalOptions()
18
18
  .option("--env <name>", "Target a specific environment (substring match against known origins)");
19
19
  program.hook("preAction", async (thisCommand) => {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@passwd/passwd-agent-cli",
3
- "version": "1.5.0",
3
+ "version": "1.5.1",
4
4
  "description": "Agent-safe CLI for passwd.team — no command exposes raw credential values",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -23,7 +23,7 @@
23
23
  ],
24
24
  "license": "MIT",
25
25
  "dependencies": {
26
- "@passwd/passwd-lib": "1.5.0",
26
+ "@passwd/passwd-lib": "1.5.1",
27
27
  "commander": "^13.1.0"
28
28
  },
29
29
  "repository": {