forked from elizaOS/eliza
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
84 lines (84 loc) · 2.29 KB
/
package.json
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
{
"name": "@elizaos/plugin-elevenlabs",
"version": "1.0.0-beta.3",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/elizaos-plugins/plugin-elevenlabs"
},
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist"
],
"dependencies": {
"@elizaos/core": "^1.0.0-beta.3",
"tsup": "8.4.0"
},
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"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": "API key for ElevenLabs."
},
"ELEVENLABS_VOICE_ID": {
"type": "string",
"description": "Optional. Voice selection ID."
},
"ELEVENLABS_MODEL_ID": {
"type": "string",
"description": "Optional. Speech model ID."
},
"ELEVENLABS_VOICE_STABILITY": {
"type": "string",
"description": "Optional. Controls voice stability."
},
"ELEVENLABS_OPTIMIZE_STREAMING_LATENCY": {
"type": "string",
"description": "Optional. Adjusts streaming latency."
},
"ELEVENLABS_OUTPUT_FORMAT": {
"type": "string",
"description": "Optional. Output format (e.g., pcm_16000)."
},
"ELEVENLABS_VOICE_SIMILARITY_BOOST": {
"type": "string",
"description": "Optional. Adjusts similarity to the reference voice (0-1)."
},
"ELEVENLABS_VOICE_STYLE": {
"type": "string",
"description": "Optional. Controls voice style intensity (0-1)."
},
"ELEVENLABS_VOICE_USE_SPEAKER_BOOST": {
"type": "string",
"description": "Optional. Enhances speaker presence (true/false)."
}
}
},
"gitHead": "9834bbd06128356b44b091f022fc2a2d024a875e",
"devDependencies": {
"prettier": "3.5.3"
}
}