-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
33 lines (33 loc) · 814 Bytes
/
Copy pathpackage.json
File metadata and controls
33 lines (33 loc) · 814 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
{
"name": "morphereum-community-openai-ws",
"version": "1.0.0",
"description": "WebSocket server for OpenAI gpt-4o-mini-2024-07-18",
"main": "server.js",
"scripts": {
"dev": "nodemon --exec ts-node src/server.ts",
"start": "node dist/server.js",
"build": "tsc"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@types/express": "^5.0.0",
"body-parser": "^1.20.3",
"cors": "^2.8.5",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"openai": "^4.82.0",
"rate-limiter-flexible": "^5.0.5",
"socket.io": "^4.8.1",
"zod": "^3.24.1"
},
"devDependencies": {
"@types/cors": "^2.8.17",
"@types/node": "^22.13.1",
"nodemon": "^3.1.9",
"ts-node": "^10.9.2",
"tsconfig-paths": "^4.2.0",
"typescript": "^5.7.3"
}
}