retell-cli 1.0.0 → 1.0.2

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/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "retell-cli",
3
- "version": "1.0.0",
4
- "description": "Official command-line tool for Retell AI - analyze call transcripts, manage agents, and update prompts with ease",
3
+ "version": "1.0.2",
4
+ "description": "Community CLI for Retell AI - efficient access to transcripts, agents, and prompts for AI assistants without MCP overhead",
5
5
  "main": "dist/index.js",
6
6
  "bin": {
7
7
  "retell": "dist/index.js"
@@ -14,6 +14,9 @@
14
14
  "scripts": {
15
15
  "build": "esbuild src/index.ts --bundle --platform=node --target=node18 --outfile=dist/index.js --banner:js=\"#!/usr/bin/env node\" --external:readline --packages=external",
16
16
  "dev": "npm run build -- --watch",
17
+ "test": "vitest run",
18
+ "test:watch": "vitest",
19
+ "test:coverage": "vitest run --coverage",
17
20
  "prepublishOnly": "npm run build"
18
21
  },
19
22
  "keywords": [
@@ -31,7 +34,7 @@
31
34
  "call-analysis",
32
35
  "retell-sdk"
33
36
  ],
34
- "author": "Retell AI Community",
37
+ "author": "awccom",
35
38
  "license": "MIT",
36
39
  "repository": {
37
40
  "type": "git",
@@ -47,6 +50,7 @@
47
50
  "dependencies": {
48
51
  "commander": "^11.0.0",
49
52
  "dotenv": "^16.0.0",
53
+ "microdiff": "^1.5.0",
50
54
  "retell-sdk": "^4.5.0",
51
55
  "zod": "^3.22.0"
52
56
  },