-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
39 lines (39 loc) · 930 Bytes
/
package.json
File metadata and controls
39 lines (39 loc) · 930 Bytes
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
{
"name": "scribe",
"version": "1.0.0",
"description": "AI Voice Note Taker - Autonomous Discord meeting assistant",
"main": "src/index.ts",
"type": "module",
"scripts": {
"dev": "bun run --hot src/index.ts",
"start": "bun run src/index.ts",
"build": "bun build src/index.ts --outdir ./dist --target bun",
"typecheck": "tsc --noEmit"
},
"keywords": [
"discord",
"bot",
"ai",
"voice",
"notes",
"gemini"
],
"author": "suppprith",
"license": "MIT",
"dependencies": {
"@discordjs/voice": "^0.19.0",
"@google/generative-ai": "^0.21.0",
"discord.js": "^14.16.3",
"ffmpeg-static": "^5.2.0",
"googleapis": "^168.0.0",
"hono": "^4.6.14",
"libsodium-wrappers": "^0.7.15",
"opusscript": "^0.1.1",
"prism-media": "^1.3.5"
},
"devDependencies": {
"@types/bun": "latest",
"@types/node": "^22.10.1",
"typescript": "^5.7.2"
}
}