-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.12 KB
/
Copy pathpackage.json
File metadata and controls
43 lines (43 loc) · 1.12 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
{
"sideEffects": [
"src/noise.js",
"src/sound.js",
"src/sun.js",
"src/page-ui.js",
"src/gallery.js",
"src/app.js"
],
"name": "VOX",
"version": "1.0.0",
"description": "Simple voice agent featuring DSP and FFT processing at client side. Uses elevenlabs agents api",
"scripts": {
"start:backend": "node server.js",
"build": "webpack --mode production",
"dev": "concurrently \"npm run start:backend\" \"webpack serve --mode development\"",
"start": "npm run build && npm run start:backend"
},
"dependencies": {
"@elevenlabs/client": "^0.7.0",
"@maxmind/geoip2-node": "^6.1.0",
"cookie-parser": "^1.4.7",
"cors": "^2.8.5",
"dotenv": "^16.0.3",
"express": "^4.18.2",
"flag-icons": "^7.5.0",
"mathjs": "^14.8.2",
"tiktoken": "^1.0.17",
"ua-parser-js": "^2.0.6",
"ws": "^8.17.0"
},
"devDependencies": {
"concurrently": "^8.0.1",
"copy-webpack-plugin": "^11.0.0",
"webpack": "^5.88.0",
"webpack-bundle-analyzer": "^4.10.2",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
},
"engines": {
"node": ">=18"
}
}