retell-sync-cli 3.9.0 → 3.10.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.
Files changed (3) hide show
  1. package/README.md +63 -0
  2. package/dist/cli.js +50114 -48430
  3. package/package.json +14 -8
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "retell-sync-cli",
3
- "version": "3.9.0",
3
+ "version": "3.10.0",
4
4
  "description": "CLI tool for syncing Retell AI agents between local filesystem and API",
5
5
  "keywords": [
6
6
  "agents",
@@ -10,29 +10,34 @@
10
10
  "sync"
11
11
  ],
12
12
  "author": "zachsents",
13
+ "repository": {
14
+ "type": "git",
15
+ "url": "https://github.com/zachsents/retell-utils",
16
+ "directory": "packages/cli"
17
+ },
13
18
  "bin": {
14
19
  "retell": "./dist/cli.js"
15
20
  },
16
21
  "type": "module",
17
22
  "main": "cli.ts",
18
23
  "scripts": {
19
- "check": "bunx tsc --noEmit && bun fix",
20
- "fix": "oxlint --type-aware --fix-suggestions && prettier . --write",
21
- "build": "bun check && bun build ./src/cli.ts --target bun --outdir dist",
24
+ "lint": "oxlint --type-aware --fix-suggestions",
25
+ "format": "prettier --write .",
26
+ "fix": "bun run lint && bun run format",
27
+ "check": "tsc --noEmit && bun run fix",
28
+ "build": "bun run check && bun build ./src/cli.ts --target bun --outdir dist",
22
29
  "prepublishOnly": "bun run build"
23
30
  },
24
31
  "dependencies": {
32
+ "@inquirer/core": "^10.0.0",
25
33
  "@inquirer/prompts": "^8.1.0",
26
34
  "boxen": "^8.0.1",
27
35
  "chalk": "^5.6.2",
28
36
  "cli-spinners": "^3.3.0",
29
37
  "commander": "^14.0.2",
30
- "es-toolkit": "^1.43.0",
31
38
  "microdiff": "^1.5.0",
32
- "p-map": "^7.0.4",
33
39
  "prettier": "3.7.4",
34
40
  "remeda": "^2.32.0",
35
- "retell-sdk": "^4.66.0",
36
41
  "yaml": "^2.8.2",
37
42
  "zod": "^4.2.1"
38
43
  },
@@ -41,6 +46,7 @@
41
46
  "oxlint": "^1.35.0",
42
47
  "oxlint-tsgolint": "^0.10.0",
43
48
  "prettier-plugin-jsdoc": "^1.8.0",
44
- "type-fest": "^5.3.1"
49
+ "type-fest": "^5.3.1",
50
+ "typescript": "^5.9.3"
45
51
  }
46
52
  }