forked from koishijs/chatgpt-bot
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
70 lines (70 loc) · 1.49 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
{
"name": "koishi-plugin-chatgpt",
"description": "AI conversation based on ChatGPT",
"version": "1.2.1",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"dist"
],
"author": {
"name": "Maiko Tan",
"email": "[email protected]"
},
"maintainers": [
"Shigma <[email protected]>"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/koishijs/chatgpt-bot.git"
},
"bugs": {
"url": "https://github.com/koishijs/chatgpt-bot/issues"
},
"homepage": "https://chatgpt.koishi.chat",
"scripts": {
"build": "atsc -b",
"docs:dev": "vitepress dev docs --open",
"docs:build": "vitepress build docs",
"docs:serve": "vitepress serve docs"
},
"koishi": {
"description": {
"en": "AI conversation based on ChatGPT",
"zh": "基于 ChatGPT 的 AI 对话机器人"
}
},
"keywords": [
"chatbot",
"koishi",
"plugin",
"ai",
"chatgpt",
"openai",
"gpt",
"conversation",
"dialogue",
"chat"
],
"peerDependencies": {
"koishi": "^4.10.4"
},
"devDependencies": {
"@koishijs/vitepress": "^1.4.3",
"@types/marked": "^4.0.7",
"@types/node": "^17.0.45",
"atsc": "^1.2.1",
"koishi": "^4.10.4",
"sass": "^1.56.1",
"typescript": "^4.9.3",
"vitepress": "1.0.0-alpha.26"
},
"dependencies": {
"eventsource-parser": "^0.0.5",
"expiry-map": "^2.0.0",
"marked": "^4.2.3",
"uuid": "^9.0.0"
}
}