-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
47 lines (47 loc) · 1.09 KB
/
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
38
39
40
41
42
43
44
45
46
47
{
"name": "gpt-simple-api-ts",
"version": "1.0.41",
"description": "A simple client GPT API written in TypeScript",
"main": "lib/index.js",
"scripts": {
"test": "echo \"No test specified\" && exit 1",
"build": "tsc",
"build-browser": "tsc -p tsconfig.browser.json"
},
"files": [
"lib/**/*",
"README.md"
],
"repository": {
"type": "git",
"url": "git+https://github.com/Kypaku/gpt-simple-api.git"
},
"keywords": [
"GPT",
"GPT-3",
"OpenAI",
"Typescript"
],
"author": "Kypaku",
"license": "ISC",
"bugs": {
"url": "https://github.com/Kypaku/gpt-simple-api/issues"
},
"homepage": "https://github.com/Kypaku/gpt-simple-api#readme",
"dependencies": {
"abort-controller": "^3.0.0",
"blob-util": "^2.0.2",
"gpt-simple-api-ts": "^1.0.40",
"https": "^1.0.0",
"https-browserify": "^1.0.0",
"import": "^0.0.6",
"openai": "^4.28.4",
"openai-old": "npm:openai@^3.3.0",
"request": "^2.88.2",
"stream-http": "^3.2.0"
},
"devDependencies": {
"@types/node": "^20.2.5",
"@types/request": "^2.48.8"
}
}