-
Notifications
You must be signed in to change notification settings - Fork 142
/
package.json
77 lines (77 loc) · 1.97 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
69
70
71
72
73
74
75
76
77
{
"name": "@kudoai/chatgpt.js",
"version": "3.3.5",
"description": "Client-side JavaScript library for ChatGPT",
"author": {
"name": "KudoAI & contributors",
"email": "opensource@kudoai.com",
"url": "https://www.kudoai.com"
},
"homepage": "https://chatgpt.js.org",
"license": "MIT",
"funding": {
"type": "github",
"url": "http://github.com/sponsors/KudoAI"
},
"browser": "chatgpt.js",
"files": [
"chatgpt.js",
"dist/chatgpt.min.js",
"docs/*.md",
"starters/",
"!starters/**/docs/*/"
],
"scripts": {
"lint": "eslint . --cache",
"lint:all": "eslint .",
"lint:fix": "eslint . --fix --cache",
"lint:fix-all": "eslint . --fix",
"test": "echo \"Error: no test specified\" && exit 1",
"preview:docs": "docsify serve docs",
"build:js": "bash utils/build.sh",
"build:docs-js": "minify-js docs --no-mangle",
"build:css": "scss-to-css",
"bump:patch": "bash utils/bump.sh patch",
"bump:minor": "bash utils/bump.sh minor",
"bump:major": "bash utils/bump.sh major",
"publish:patch": "bash utils/bump.sh patch --publish",
"publish:minor": "bash utils/bump.sh minor --publish",
"publish:major": "bash utils/bump.sh major --publish"
},
"repository": {
"type": "git",
"url": "git+https://github.com/KudoAI/chatgpt.js.git"
},
"keywords": [
"ai",
"artificial intelligence",
"bot",
"chat",
"chatbot",
"chatgpt",
"clientside",
"conversational ai",
"frontend",
"gpt",
"gpt3",
"gpt4",
"javascript",
"library",
"machine learning",
"ml",
"nlp",
"openai"
],
"bugs": "https://github.com/KudoAI/chatgpt.js/issues",
"devDependencies": {
"@adamlui/minify.js": "^1.8.5",
"@adamlui/scss-to-css": "^1.10.18",
"@eslint/json": "^0.6.0",
"@eslint/markdown": "^6.2.1",
"docsify-cli": "^4.4.4",
"eslint": "^9.14.0",
"eslint-plugin-regexp": "^2.6.0",
"eslint-plugin-yml": "^1.15.0",
"husky": "^9.1.6"
}
}