-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.32 KB
/
Copy pathpackage.json
File metadata and controls
96 lines (96 loc) · 2.32 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
88
89
90
91
92
93
94
95
96
{
"name": "koishi-plugin-chatluna-forward-msg",
"description": "为 ChatLuna 提供 OneBot 合并转发消息读取、发送、伪造发送与图片描述工具,支持 NapCat/LLBot",
"version": "0.2.5",
"homepage": "https://github.com/CookSleep/chatluna-forward-msg",
"repository": {
"type": "git",
"url": "git+https://github.com/CookSleep/chatluna-forward-msg.git"
},
"bugs": {
"url": "https://github.com/CookSleep/chatluna-forward-msg/issues"
},
"keywords": [
"koishi",
"chatluna",
"napcat",
"llbot",
"onebot",
"forward-message"
],
"contributors": [
"CookSleep"
],
"type": "module",
"main": "lib/index.cjs",
"module": "lib/index.mjs",
"typings": "lib/index.d.ts",
"exports": {
".": {
"types": "./lib/index.d.ts",
"import": "./lib/index.mjs",
"require": "./lib/index.cjs"
},
"./package.json": "./package.json"
},
"files": [
"lib"
],
"license": "GPL-3.0-only",
"dependencies": {
"@langchain/core": "^0.3.80",
"zod": "3.25.76"
},
"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"
}
},
"scripts": {
"build": "npx yakumo build",
"fast-build": "npx yakumo build -- --ext=.ts",
"bump": "npx yakumo version",
"dep": "npx yakumo upgrade",
"pub": "npx yakumo publish"
},
"peerDependencies": {
"koishi": "^4.18.9",
"koishi-plugin-chatluna": "^1.3.36"
},
"devDependencies": {
"@koishijs/client": "^5.30.11",
"@types/node": "^24.3.1",
"esbuild": "^0.25.10",
"koishi": "^4.18.9",
"koishi-plugin-chatluna": "^1.3.36",
"typescript": "^5.9.3",
"yakumo": "^1.0.0",
"yakumo-esbuild": "^1.0.0",
"yakumo-tsc": "^1.0.0"
},
"engines": {
"node": ">=18.0.0"
},
"koishi": {
"category": "ai",
"description": {
"zh": "为 ChatLuna 提供 OneBot 合并转发消息读取、发送、伪造发送与图片描述工具,支持 NapCat/LLBot"
},
"service": {
"required": [
"chatluna",
"http",
"database"
]
}
}
}