-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpackage.json
More file actions
83 lines (83 loc) · 1.97 KB
/
package.json
File metadata and controls
83 lines (83 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@elevenlabs/cli",
"version": "0.5.0",
"description": "CLI tool to manage ElevenLabs agents",
"type": "module",
"keywords": [
"elevenlabs",
"cli",
"ai",
"agents",
"typescript"
],
"author": "ElevenLabs",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/elevenlabs/cli.git"
},
"homepage": "https://github.com/elevenlabs/cli",
"bugs": {
"url": "https://github.com/elevenlabs/cli/issues"
},
"bin": {
"elevenlabs": "./bin/elevenlabs"
},
"files": [
"dist",
"bin",
"README.md"
],
"scripts": {
"build": "tsc",
"dev": "tsx src/cli.ts",
"prepublishOnly": "npm run build",
"test": "jest --testPathIgnorePatterns='e2e'",
"test:unit": "jest --testPathIgnorePatterns='e2e'",
"test:e2e": "jest --testPathPattern='e2e'",
"test:all": "jest",
"lint": "eslint src -c eslint.config.js",
"format": "prettier --write src/**/*.ts"
},
"dependencies": {
"@elevenlabs/elevenlabs-js": "2.36.0",
"@inkjs/ui": "^2.0.0",
"@types/read": "^0.0.32",
"chalk": "^5.3.0",
"commander": "^11.1.0",
"dotenv": "^16.3.1",
"fs-extra": "^11.1.1",
"ink": "^6.0.0",
"ink-big-text": "^2.0.0",
"ink-gradient": "^3.0.0",
"ink-select-input": "^6.0.0",
"ink-spinner": "^5.0.0",
"ink-text-input": "^6.0.0",
"react": "19.2.1",
"read": "^4.1.0"
},
"devDependencies": {
"@eslint/js": "^9.0.0",
"npm": "^11.6.4",
"@jest/globals": "^30.0.4",
"@types/fs-extra": "^11.0.2",
"@types/jest": "^29.5.5",
"@types/node": "^20.8.0",
"@types/react": "19.2.1",
"@typescript-eslint/eslint-plugin": "^8.0.0",
"@typescript-eslint/parser": "^8.0.0",
"eslint": "^9.0.0",
"jest": "^29.7.0",
"prettier": "^3.0.3",
"ts-jest": "^29.4.0",
"tsx": "^3.14.0",
"typescript": "^5.2.2"
},
"publishConfig": {
"access": "public"
},
"engines": {
"node": ">=16.0.0"
},
"packageManager": "pnpm@10.20.0"
}