avana-cli 2.11.0 → 2.11.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/README.md +1 -1
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -30,7 +30,7 @@ Avana prevents costly security breaches by detecting hardcoded secrets, API keys
30
30
 
31
31
  ```bash
32
32
  # Install globally
33
- npm install -g avana
33
+ npm install -g avana-cli
34
34
 
35
35
  # Or use with npx (no installation required)
36
36
  npx avana scan
package/package.json CHANGED
@@ -1,11 +1,11 @@
1
1
  {
2
2
  "name": "avana-cli",
3
- "version": "2.11.0",
3
+ "version": "2.11.1",
4
4
  "description": "A robust, production-ready CLI tool for detecting secrets and credentials in your codebase",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
7
7
  "bin": {
8
- "avana-cli": "./dist/cli.js"
8
+ "avana": "./dist/cli.js"
9
9
  },
10
10
  "scripts": {
11
11
  "build": "tsc",