Spaces:
Sleeping
Sleeping
Create package.json
Browse files- package.json +16 -0
package.json
ADDED
@@ -0,0 +1,16 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
{
|
2 |
+
"name": "julep-proxy",
|
3 |
+
"version": "1.0.0",
|
4 |
+
"description": "OpenAI-compatible proxy for Julep API",
|
5 |
+
"main": "app.js",
|
6 |
+
"scripts": {
|
7 |
+
"start": "node app.js"
|
8 |
+
},
|
9 |
+
"dependencies": {
|
10 |
+
"node-fetch": "^2.6.7",
|
11 |
+
"uuid": "^9.0.0"
|
12 |
+
},
|
13 |
+
"engines": {
|
14 |
+
"node": ">=14.0.0"
|
15 |
+
}
|
16 |
+
}
|