-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
52 lines (52 loc) · 1.02 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
{
"name": "koishi-plugin-chatllm",
"description": "chat with llm",
"version": "0.0.13",
"contributors": [
"Retronew <jkhaoqi110@gmail.com>"
],
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"files": [
"lib",
"dist"
],
"license": "MIT",
"keywords": [
"chatgpt",
"koishi",
"plugin",
"ai",
"llm"
],
"peerDependencies": {
"koishi": "^4.17.4",
"koishi-plugin-puppeteer": "^3.8.4"
},
"koishi": {
"browser": true,
"description": {
"zh": "A ChatGPT robot that calls the official API.",
"en": "一个调用官方 API 的 ChatGPT 机器人插件"
},
"locales": [
"zh",
"en"
]
},
"dependencies": {
"@types/uuid": "^9.0.8",
"axios": "^1.6.8",
"highlight.js": "^11.9.0",
"is-color": "^1.0.2",
"markdown-it": "^14.1.0",
"openai": "^4.33.1",
"pangu": "^4.0.7",
"uuid": "^9.0.1"
},
"devDependencies": {
"@types/is-color": "^1",
"@types/markdown-it": "^14",
"@types/pangu": "^4"
}
}