forked from elizaos-plugins/plugin-elevenlabs
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
181 lines (181 loc) · 5.67 KB
/
package.json
File metadata and controls
181 lines (181 loc) · 5.67 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
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
{
"name": "@elizaos/plugin-elevenlabs",
"version": "1.6.0",
"type": "module",
"main": "dist/cjs/index.node.cjs",
"module": "dist/node/index.node.js",
"types": "dist/index.d.ts",
"browser": "dist/browser/index.browser.js",
"sideEffects": false,
"repository": {
"type": "git",
"url": "git+https://github.com/elizaos-plugins/plugin-elevenlabs.git"
},
"exports": {
"./package.json": "./package.json",
".": {
"types": "./dist/index.d.ts",
"browser": {
"types": "./dist/browser/index.d.ts",
"import": "./dist/browser/index.browser.js",
"default": "./dist/browser/index.browser.js"
},
"node": {
"types": "./dist/node/index.d.ts",
"import": "./dist/node/index.node.js",
"require": "./dist/cjs/index.node.cjs",
"default": "./dist/node/index.node.js"
},
"default": "./dist/node/index.node.js"
},
"./node": {
"types": "./dist/node/index.d.ts",
"import": "./dist/node/index.node.js",
"default": "./dist/node/index.node.js"
},
"./browser": {
"types": "./dist/browser/index.d.ts",
"import": "./dist/browser/index.browser.js",
"default": "./dist/browser/index.browser.js"
}
},
"files": [
"dist"
],
"dependencies": {
"@elevenlabs/elevenlabs-js": "^2.16.0",
"@elizaos/core": "1.5.10"
},
"devDependencies": {
"@types/bun": "^1.2.22",
"@types/node": "^24.5.2",
"prettier": "3.6.2",
"typescript": "^5.9.2"
},
"scripts": {
"build": "bun run build.ts",
"dev": "bun --hot build.ts",
"test": "elizaos test",
"clean": "rm -rf dist .turbo node_modules .turbo-tsconfig.json tsconfig.tsbuildinfo",
"format": "prettier --write ./src",
"format:check": "prettier --check ./src",
"lint": "prettier --write ./src"
},
"publishConfig": {
"access": "public"
},
"agentConfig": {
"pluginType": "elizaos:plugin:1.0.0",
"pluginParameters": {
"ELEVENLABS_API_KEY": {
"type": "string",
"description": "Primary ElevenLabs API key used for authenticating requests",
"required": true,
"sensitive": true
},
"ELEVENLABS_VOICE_ID": {
"type": "string",
"description": "ID of the voice to synthesize with",
"required": false,
"default": "EXAVITQu4vr4xnSDxMaL",
"sensitive": false
},
"ELEVENLABS_MODEL_ID": {
"type": "string",
"description": "Model identifier to use for TTS generation",
"required": false,
"default": "eleven_monolingual_v1",
"sensitive": false
},
"ELEVENLABS_VOICE_STABILITY": {
"type": "number",
"description": "Voice stability factor (0-1) influencing consistency of speech",
"required": false,
"default": "0.5",
"sensitive": false
},
"ELEVENLABS_OPTIMIZE_STREAMING_LATENCY": {
"type": "number",
"description": "Latency optimization level for streaming audio (0-4)",
"required": false,
"default": "0",
"sensitive": false
},
"ELEVENLABS_OUTPUT_FORMAT": {
"type": "string",
"description": "Audio output format returned by the API (e.g., mp3_44100_128 or pcm_16000)",
"required": false,
"default": "mp3_44100_128",
"sensitive": false
},
"ELEVENLABS_BROWSER_URL": {
"type": "string",
"description": "Optional browser-safe proxy base URL that injects the API key server-side",
"required": false,
"sensitive": false
},
"ELEVENLABS_VOICE_SIMILARITY_BOOST": {
"type": "number",
"description": "Similarity boost factor (0-1) affecting how closely the voice matches the target",
"required": false,
"default": "0.75",
"sensitive": false
},
"ELEVENLABS_VOICE_STYLE": {
"type": "number",
"description": "Style intensity (0-1) for the generated voice",
"required": false,
"default": "0",
"sensitive": false
},
"ELEVENLABS_VOICE_USE_SPEAKER_BOOST": {
"type": "boolean",
"description": "Flag to enable or disable speaker boost feature",
"required": false,
"default": "true",
"sensitive": false
},
"ELEVENLABS_STT_MODEL_ID": {
"type": "string",
"description": "Model identifier to use for speech-to-text transcription",
"required": false,
"default": "scribe_v1",
"sensitive": false
},
"ELEVENLABS_STT_LANGUAGE_CODE": {
"type": "string",
"description": "Language code for transcription (e.g., 'en', 'es'). Leave empty for automatic detection",
"required": false,
"sensitive": false
},
"ELEVENLABS_STT_TIMESTAMPS_GRANULARITY": {
"type": "string",
"description": "Timestamp detail level: 'none', 'word', or 'character'",
"required": false,
"default": "word",
"sensitive": false
},
"ELEVENLABS_STT_DIARIZE": {
"type": "boolean",
"description": "Enable speaker diarization to identify different speakers",
"required": false,
"default": "false",
"sensitive": false
},
"ELEVENLABS_STT_NUM_SPEAKERS": {
"type": "number",
"description": "Expected number of speakers for diarization (1-32)",
"required": false,
"sensitive": false
},
"ELEVENLABS_STT_TAG_AUDIO_EVENTS": {
"type": "boolean",
"description": "Tag audio events like laughter, applause, etc.",
"required": false,
"default": "false",
"sensitive": false
}
}
},
"gitHead": "646c632924826e2b75c2304a75ee56959fe4a460"
}