-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
37 lines (37 loc) · 982 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
32
33
34
35
36
37
{
"name": "openai-cache",
"version": "1.0.0",
"description": "Caches responses from the OpenAI API to a database.",
"main": "target/index.js",
"scripts": {
"build": "npx tsc",
"test": "jest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/nuprl/codex-eval.git"
},
"author": "Arjun Guha <a.guha@northeastern.edu>",
"license": "BSD-3-Clause",
"homepage": "https://github.com/nuprl/openai-caching-proxy",
"devDependencies": {
"@tsconfig/recommended": "^1.0.1",
"@types/jest": "^27.5.0",
"@types/pg": "^8.6.5",
"jest": "^28.1.0",
"typescript": "^4.6.4"
},
"dependencies": {
"@arjunguha/pervasives.js": "^1.0.3",
"@types/body-parser": "^1.19.2",
"@types/express": "^4.17.13",
"@types/morgan": "^1.9.3",
"azure-openai": "^0.9.1",
"body-parser": "^1.20.0",
"commander": "^9.2.0",
"express": "^4.18.1",
"morgan": "^1.10.0",
"openai": "^3.0.0",
"pg": "^8.7.3"
}
}