-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 766 Bytes
/
Copy pathpackage.json
File metadata and controls
30 lines (30 loc) · 766 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
{
"name": "trtc-ai-app",
"version": "1.0.0",
"description": "TRTC-based Conversational AI Agent Platform",
"main": "server.js",
"scripts": {
"start": "node server.js",
"create": "node src/agent_cards/scripts/create_agent.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"format": "prettier --write .",
"format:check": "prettier --check ."
},
"private": true,
"dependencies": {
"@types/cors": "^2.8.17",
"cors": "^2.8.5",
"dotenv": "^16.5.0",
"express": "^5.1.0",
"morgan": "^1.10.0",
"openai": "^5.1.1",
"tencentcloud-sdk-nodejs-trtc": "^4.1.123",
"tls-sig-api-v2": "^1.0.2"
},
"devDependencies": {
"@eslint/js": "^9.17.0",
"eslint": "^9.17.0",
"prettier": "^3.4.2"
}
}