forked from Y-AIFE/ChatGPT-API
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
68 lines (68 loc) · 1.35 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
67
68
{
"name": "@aiux/chatgpt",
"version": "1.6.5",
"description": "Node.js client for the official ChatGPT API, which supports CommonJS and Node.js V12+",
"author": "aiux",
"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": {
"type": "git",
"url": "git+ssh://[email protected]/aiux/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",
"uuid": "^9.0.0"
},
"engines": {
"node": ">=12"
},
"keywords": [
"chatgpt",
"openai",
"chat",
"gpt",
"gpt-3",
"gpt3",
"gpt4",
"chatbot",
"machine learning",
"ai",
"ml",
"bot"
]
}