Spaces:
Sleeping
Sleeping
Create package.json
Browse files- package.json +21 -0
package.json
ADDED
@@ -0,0 +1,21 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "coze-to-gpt",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"description": "",
|
5 |
+
"main": "index.js",
|
6 |
+
"scripts": {
|
7 |
+
"test": "echo \"Error: no test specified\" && exit 1",
|
8 |
+
"start": "nodemon server.js"
|
9 |
+
},
|
10 |
+
"keywords": [],
|
11 |
+
"author": "",
|
12 |
+
"license": "ISC",
|
13 |
+
"dependencies": {
|
14 |
+
"@koa/router": "^12.0.1",
|
15 |
+
"eventsource-parser": "^1.1.2",
|
16 |
+
"koa": "^2.15.0",
|
17 |
+
"koa-body": "^6.0.1",
|
18 |
+
"koa-compose": "^4.1.0"
|
19 |
+
},
|
20 |
+
"type": "module"
|
21 |
+
}
|