-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 1.76 KB
/
package.json
File metadata and controls
78 lines (78 loc) · 1.76 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
{
"name": "@clawdbot/discord-voice",
"version": "0.1.5",
"description": "Discord voice channel plugin for OpenClaw - real-time voice conversations",
"keywords": [
"ai",
"claude",
"deepgram",
"discord",
"elevenlabs",
"openclaw",
"speech-to-text",
"text-to-speech",
"voice",
"whisper"
],
"license": "MIT",
"author": "Discord Voice Plugin Contributors",
"repository": {
"type": "git",
"url": "https://github.com/clawdbot/discord-voice"
},
"type": "module",
"main": "index.ts",
"scripts": {
"typecheck": "tsc --noEmit",
"smoke-test": "node scripts/smoke-test.mjs",
"build": "tsc",
"watch": "tsc -w",
"lint": "oxlint",
"lint:fix": "oxlint --fix",
"fmt": "oxfmt",
"fmt:check": "oxfmt --check",
"check": "npm run lint && npm run typecheck",
"fix": "npm run fmt && npm run lint:fix"
},
"dependencies": {
"@aws-sdk/client-polly": "^3.990.0",
"@deepgram/sdk": "^4.11.3",
"@discordjs/voice": "^0.19.0",
"@sinclair/typebox": "^0.34.48",
"@xenova/transformers": "^2.17.2",
"discord.js": "^14.16.3",
"emoji-regex": "^10.6.0",
"hono": "^4.11.9",
"kokoro-js": "^1.2.1",
"libsodium-wrappers": "^0.8.2",
"node-edge-tts": "^1.2.10",
"opusscript": "^0.0.8",
"prism-media": "^1.3.5",
"wavefile": "^11.0.0",
"ws": "^8.18.0"
},
"devDependencies": {
"@types/node": "^25.0.10",
"@types/ws": "^8.18.0",
"oxfmt": "^0.32.0",
"oxlint": "^1.48.0",
"typescript": "^5.9.3"
},
"overrides": {
"tar": "^7.5.9",
"undici": "^7.22.0"
},
"peerDependencies": {
"openclaw": ">=2025.0.0"
},
"clawdbot": {
"extensions": [
"./index.ts"
]
},
"openclaw": {
"extensions": [
"./index.ts"
]
}
}