-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
66 lines (66 loc) · 1.37 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"name": "@lxfriday/chatgpt",
"version": "1.4.1",
"description": "Node.js client for the official ChatGPT API, which supports CommonJS and Node.js V12+",
"author": "lxfriday <[email protected]>",
"main": "./build/index.js",
"module": "./build/index.js",
"types": "./build/index.d.ts",
"exports": {
".": {
"import": {
"types": "./build/index.d.ts",
"default": "./build/index.mjs"
},
"require": {
"types": "./build/index.d.ts",
"default": "./build/index.js"
}
},
"./package.json": "./package.json"
},
"files": [
"build/index.js",
"build/index.mjs",
"build/index.d.ts"
],
"repository": "[email protected]:lxfriday/ChatGPT-API.git",
"scripts": {
"build": "tsup"
},
"license": "MIT",
"devDependencies": {
"@types/node": "^18.14.2",
"@types/uuid": "^9.0.1",
"prettier": "^2.8.4",
"tsup": "^6.6.3",
"tsx": "^3.12.3",
"typescript": "^4.9.5"
},
"dependencies": {
"@dqbd/tiktoken": "^0.4.0",
"axios": "^1.3.4",
"chalk": "^5.2.0",
"keyv": "^4.5.2",
"lru-cache": "^7.18.1",
"node-fetch": "^3.3.2",
"uuid": "^9.0.0"
},
"engines": {
"node": ">=12"
},
"keywords": [
"chatgpt",
"openai",
"chat",
"gpt",
"gpt-3",
"gpt3",
"gpt4",
"chatbot",
"machine learning",
"ai",
"ml",
"bot"
]
}