-
Notifications
You must be signed in to change notification settings - Fork 0
/
deno.json
32 lines (32 loc) · 851 Bytes
/
deno.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
{
"name": "@robbie-wasabi/llmonade",
"version": "0.0.3",
"description": "A conversational AI assistant",
"exports": {
".": "./src/mod.ts"
},
"fmt": {
"semiColons": false,
"indentWidth": 2
},
"compilerOptions": {
"lib": ["deno.window"],
"strict": true,
"types": ["node"]
},
"imports": {
"@ricky0123/vad-web": "npm:@ricky0123/vad-web@^0.0.21",
"openai": "jsr:@openai/openai@^4.71.1",
"@std/log": "jsr:@std/log@^0.224.11",
"speaker": "npm:[email protected]",
"@types/node": "npm:@types/[email protected]",
"node-web-audio-api": "npm:[email protected]",
"openai-realtime-api": "npm:[email protected]",
"mic": "npm:[email protected]"
},
"publish": {
"include": ["src/", "README.md", "LICENSE"],
"exclude": ["**/tests/", "**/*.test.ts"]
},
"nodeModulesDir": "auto"
}