bland-cli 0.1.2 → 0.1.3

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
@@ -5,13 +5,13 @@ The command-line interface for [Bland AI](https://bland.ai). Build, test, and de
5
5
  ## Install
6
6
 
7
7
  ```bash
8
- npm install -g @bland-ai/cli
8
+ npm install -g bland-cli
9
9
  ```
10
10
 
11
11
  Or run without installing:
12
12
 
13
13
  ```bash
14
- npx @bland-ai/cli
14
+ npx bland-cli
15
15
  ```
16
16
 
17
17
  Requires Node.js 18+.
package/dist/index.js CHANGED
@@ -25,7 +25,7 @@ const program = new Command();
25
25
  program
26
26
  .name("bland")
27
27
  .description("The official Bland AI command-line interface")
28
- .version("0.1.2");
28
+ .version("0.1.3");
29
29
  // Register all command groups
30
30
  registerAuthCommand(program);
31
31
  registerCallCommand(program);
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "bland-cli",
3
- "version": "0.1.2",
3
+ "version": "0.1.3",
4
4
  "description": "The official Bland AI command-line interface",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",