-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
43 lines (42 loc) · 849 Bytes
/
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
{
"name": "realtime-voice-changer",
"version": "1.0.0",
"description": "A real-time voice changer application using WebSockets and ONNX/TensorFlow/PyTorch",
"main": "index.js",
"scripts": {
"start": "node index.js",
"dev": "nodemon index.js"
},
"dependencies": {
"express": "^5.0.0",
"onnxruntime-node": "^1.20.1",
"@tensorflow/tfjs-node": "^4.22.0",
"ws": "^8.16.0",
"python-shell": "^5.0.0",
"multer": "^1.4.5-lts.1"
},
"devDependencies": {
"nodemon": "^3.1.9"
},
"keywords": [
"voice",
"changer",
"real-time",
"onnx",
"tensorflow",
"pytorch",
"websocket"
],
"author": "sioaeko",
"license": "MIT",
"files": [
"index.js",
"rvc-model.js",
"onnx-model.js",
"python_server.py",
"public"
],
"engines": {
"node": ">=18.0.0"
}
}