retell-cli 1.0.0

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 ADDED
@@ -0,0 +1,61 @@
1
+ {
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",
5
+ "main": "dist/index.js",
6
+ "bin": {
7
+ "retell": "dist/index.js"
8
+ },
9
+ "files": [
10
+ "dist",
11
+ "README.md",
12
+ "CHANGELOG.md"
13
+ ],
14
+ "scripts": {
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
+ "dev": "npm run build -- --watch",
17
+ "prepublishOnly": "npm run build"
18
+ },
19
+ "keywords": [
20
+ "retell",
21
+ "retell-ai",
22
+ "ai",
23
+ "voice-ai",
24
+ "cli",
25
+ "transcript",
26
+ "agent",
27
+ "llm",
28
+ "prompt-engineering",
29
+ "conversation-flow",
30
+ "voice-assistant",
31
+ "call-analysis",
32
+ "retell-sdk"
33
+ ],
34
+ "author": "Retell AI Community",
35
+ "license": "MIT",
36
+ "repository": {
37
+ "type": "git",
38
+ "url": "https://github.com/awccom/retell-cli.git"
39
+ },
40
+ "bugs": {
41
+ "url": "https://github.com/awccom/retell-cli/issues"
42
+ },
43
+ "homepage": "https://github.com/awccom/retell-cli#readme",
44
+ "engines": {
45
+ "node": ">=18.0.0"
46
+ },
47
+ "dependencies": {
48
+ "commander": "^11.0.0",
49
+ "dotenv": "^16.0.0",
50
+ "retell-sdk": "^4.5.0",
51
+ "zod": "^3.22.0"
52
+ },
53
+ "devDependencies": {
54
+ "@types/node": "^20.0.0",
55
+ "@vitest/coverage-v8": "^1.6.1",
56
+ "esbuild": "^0.19.0",
57
+ "tsx": "^4.20.6",
58
+ "typescript": "^5.0.0",
59
+ "vitest": "^1.0.0"
60
+ }
61
+ }