-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
112 lines (112 loc) · 2.57 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
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
{
"name": "@elizaos-plugins/plugin-speech-tts",
"version": "0.1.8+build.1",
"type": "module",
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": {
"import": {
"@elizaos/source": "./src/index.ts",
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
}
},
"files": [
"dist",
"scripts",
"package.json",
"LICENSE",
"tsup.config.ts"
],
"dependencies": {
"@deepgram/sdk": "^3.9.0",
"echogarden": "2.0.14",
"formdata-node": "^6.0.3",
"nodejs-whisper": "0.2.6",
"openai": "^4.81.0",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/node": "22.12.0",
"tsup": "8.3.6",
"typescript": "^5.7.3"
},
"scripts": {
"build": "tsup --format esm --dts",
"dev": "tsup --format esm --dts --watch",
"lint": "eslint --fix --cache ."
},
"agentConfig": {
"pluginType": "elizaos:client:1.0.0",
"pluginParameters": {
"OPENAI_API_KEY": {
"type": "string"
},
"OPENAI_API_URL": {
"type": "string",
"default": "https://api.openai.com",
"optional": true
},
"ELEVENLABS_XI_API_URL": {
"type": "string",
"default": "https://api.elevenlabs.io/v1",
"optional": true
},
"ELEVENLABS_XI_API_KEY": {
"type": "string",
"optional": true
},
"ELEVENLABS_MODEL_ID": {
"type": "string",
"default": "eleven_monolingual_v1",
"optional": true
},
"ELEVENLABS_VOICE_ID": {
"type": "string",
"optional": true
},
"ELEVENLABS_VOICE_STABILITY": {
"type": "string",
"default": "0.5",
"optional": true
},
"ELEVENLABS_VOICE_SIMILARITY_BOOST": {
"type": "string",
"default": "0.75",
"optional": true
},
"ELEVENLABS_VOICE_STYLE": {
"type": "string",
"default": "0",
"optional": true
},
"ELEVENLABS_VOICE_USE_SPEAKER_BOOST": {
"type": "string",
"default": "true",
"optional": true
},
"ELEVENLABS_OPTIMIZE_STREAMING_LATENCY": {
"type": "string",
"default": "0",
"optional": true
},
"ELEVENLABS_OUTPUT_FORMAT": {
"type": "string",
"default": "pcm_16000",
"optional": true
},
"VITS_VOICE": {
"type": "string",
"optional": true
},
"VITS_MODEL": {
"type": "string",
"optional": true
}
}
}
}