-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 725 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 725 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
{
"name": "lambda-openai-proxy",
"version": "1.0.0",
"description": "OpenAI compatible API proxy running on AWS Lambda",
"main": "index.ts",
"scripts": {
"test": "jest",
"build": "esbuild src/index.ts --bundle --minify --sourcemap --platform=node --target=es2020 --outfile=dist/index.js"
},
"author": "Alexis",
"license": "Apache License 2.0",
"dependencies": {
"aws-lambda": "^1.0.7",
"openai": "^4.52.1",
"yaml": "^2.4.5"
},
"devDependencies": {
"@types/aws-lambda": "^8.10.140",
"@types/jest": "^29.5.12",
"@types/node": "^20.14.9",
"esbuild": "^0.21.5",
"jest": "^29.7.0",
"ts-jest": "^29.1.5",
"ts-loader": "^9.5.1",
"typescript": "^5.5.2"
}
}