forked from dev-zuo/chatgpt-node-vue3
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
31 lines (31 loc) · 775 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
{
"name": "chat-gpt-server",
"version": "1.0.0",
"description": "OpenAI ChatGPT server",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zuoxiaobai/chat-gpt-server.git"
},
"keywords": [],
"author": "",
"license": "ISC",
"bugs": {
"url": "https://github.com/zuoxiaobai/chat-gpt-server/issues"
},
"homepage": "https://github.com/zuoxiaobai/chat-gpt-server#readme",
"dependencies": {
"chatgpt": "^5.2.4",
"dayjs": "1.11.7",
"isomorphic-fetch": "3.0.0",
"koa": "2.14.1",
"koa-bodyparser": "4.4.0",
"koa-router": "12.0.0",
"koa-session": "6.4.0",
"koa-static": "5.0.0",
"openai": "3.2.1"
}
}