forked from KudoAI/chatgpt.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
50 lines (50 loc) · 1.01 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
{
"name": "chatgpt",
"version": "1.12.0",
"description": "Client-side JavaScript library for ChatGPT",
"main": "chatgpt.js",
"scripts": {
"lint": "eslint . --ext .js",
"lint:fix": "eslint . --ext .js --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"build": "uglifyjs chatgpt.js -o dist/chatgpt.min.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/kudoai/chatgpt.js.git"
},
"keywords": [
"chatgpt",
"artificial intelligence",
"nlp",
"javascript",
"library",
"frontend",
"clientside",
"chatbot",
"openai",
"ai",
"chat",
"gpt",
"gpt3",
"gpt4",
"machine learning",
"conversational ai",
"ml",
"bot"
],
"author": [
{
"name": "KudoAI & contributors",
"url": "https://kudoai.com"
}
],
"license": "MIT",
"bugs": {
"url": "https://github.com/kudoai/chatgpt.js/issues"
},
"homepage": "https://chatgpt.js.org",
"devDependencies": {
"eslint": "^8.44.0"
}
}