-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpackage.json
More file actions
115 lines (115 loc) · 3.26 KB
/
package.json
File metadata and controls
115 lines (115 loc) · 3.26 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
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
{
"name": "koishi-plugin-emojiluna",
"description": "Smart emoji management plugin with AI categorization",
"version": "1.3.1",
"main": "lib/index.js",
"typings": "lib/index.d.ts",
"types": "lib/index.d.ts",
"files": [
"lib",
"dist"
],
"license": "MIT",
"keywords": [
"koishi",
"plugin",
"service",
"emoji",
"management",
"ai",
"categorization"
],
"author": "emojiluna",
"repository": {
"type": "git",
"url": "https://github.com/ChatLunaLab/emojiluna.git",
"directory": "."
},
"dependencies": {
"@element-plus/icons-vue": "^2.3.2",
"@jimp/core": "^1.6.0",
"@koishijs/plugin-console": "^5.30.11",
"@langchain/core": "^0.3.80",
"formidable": "^3.5.4",
"gifuct-js": "^2.1.2",
"jimp": "^1.6.0",
"vue-i18n": "^11.1.12",
"vue-router": "^4.5.1"
},
"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"
}
},
"devDependencies": {
"@koishijs/client": "^5.30.11",
"@typescript-eslint/eslint-plugin": "^7.18.1-alpha.3",
"@typescript-eslint/parser": "^7.18.0",
"esbuild": "^0.25.10",
"esbuild-register": "npm:@shigma/esbuild-register@^1.1.1",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.2",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^6.1.1",
"koishi": "^4.18.9",
"mocha": "^10.2.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"vue": "^3.4.21",
"yakumo": "^1.0.0",
"yakumo-esbuild": "^1.0.0",
"yakumo-mocha": "^1.0.0",
"yakumo-tsc": "^1.0.0"
},
"peerDependencies": {
"@koishijs/plugin-console": "^5.30.11",
"@koishijs/plugin-server": "^3.2.7",
"koishi": "^4.18.9",
"koishi-plugin-chatluna": "^1.3.0-alpha.49"
},
"peerDependenciesMeta": {
"@koishijs/plugin-server": {
"optional": true
}
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"build": "yarn yakumo build",
"bump": "yarn yakumo version",
"dep": "yarn yakumo upgrade",
"pub": "yarn yakumo publish",
"lint": "yarn eslint src --ext=ts",
"lint-fix": "yarn eslint src --ext=ts --fix"
},
"koishi": {
"description": {
"zh": "表情包管理插件,支持自动获取群聊表情包,AI(ChatLuna)自动分类、标签管理和快速搜索"
},
"service": {
"implements": [
"emojiluna"
],
"required": [
"chatluna"
],
"optional": [
"server",
"console"
]
}
}
}