-
-
Notifications
You must be signed in to change notification settings - Fork 49
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 1.98 KB
/
package.json
File metadata and controls
87 lines (87 loc) · 1.98 KB
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
78
79
80
81
82
83
84
85
86
87
{
"name": "koishi-plugin-chatluna-openai-like-adapter",
"description": "openai style api adapter for chatluna",
"version": "1.3.3",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
"files": [
"lib",
"dist"
],
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"type": "module",
"author": "dingyi222666 <dingyi222666@foxmail.com>",
"repository": {
"type": "git",
"url": "https://github.com/ChatLunaLab/chatluna.git",
"directory": "packages/adapter-openai-like"
},
"license": "AGPL-3.0",
"bugs": {
"url": "https://github.com/ChatLunaLab/chatluna/issues"
},
"homepage": "https://github.com/ChatLunaLab/chatluna/tree/v1-dev/packages/adapter-openai-like#readme",
"scripts": {
"build": "atsc -b"
},
"engines": {
"node": ">=18.0.0"
},
"resolutions": {
"@langchain/core": "^0.3.80",
"js-tiktoken": "npm:@dingyi222666/js-tiktoken@^1.0.21"
},
"overrides": {
"@langchain/core": "^0.3.80",
"js-tiktoken": "npm:@dingyi222666/js-tiktoken@^1.0.21"
},
"pnpm": {
"overrides": {
"@langchain/core": "^0.3.80",
"js-tiktoken": "npm:@dingyi222666/js-tiktoken@^1.0.21"
}
},
"keywords": [
"chatbot",
"koishi",
"plugin",
"service",
"chatgpt",
"gpt",
"chatluna",
"adapter"
],
"dependencies": {
"@chatluna/v1-shared-adapter": "^1.0.21",
"@langchain/core": "^1.1.15",
"zod": "3.25.76",
"zod-to-json-schema": "^3.24.6"
},
"devDependencies": {
"atsc": "^2.1.0",
"koishi": "^4.18.9"
},
"peerDependencies": {
"koishi": "^4.18.9",
"koishi-plugin-chatluna": "^1.3.10"
},
"koishi": {
"description": {
"zh": "ChatLuna 的 OpenAI 兼容 API 适配器",
"en": "OpenAI-compatible API adapter for ChatLuna"
},
"service": {
"required": [
"chatluna"
]
}
}
}