-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpackage.json
113 lines (113 loc) · 2.88 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
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
{
"name": "koishi-plugin-chatluna-character",
"description": "Let the large language model play a role, disguise as a group friend",
"version": "0.0.109",
"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",
"dist",
"resources"
],
"license": "AGPL-3.0",
"keywords": [
"chatbot",
"koishi",
"plugin",
"service",
"chatgpt",
"chatluna",
"preset",
"market"
],
"author": "dingyi222666 <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/ChatLunaLab/chatluna-character.git",
"directory": "."
},
"bugs": {
"url": "https://github.com/ChatLunaLab/chatluna-character/issues"
},
"homepage": "https://github.com/ChatLunaLab/chatluna-character#readme",
"dependencies": {
"@langchain/core": "^0.3.18",
"he": "^1.2.0",
"js-yaml": "^4.1.0",
"marked": "^15.0.1"
},
"devDependencies": {
"@initencounter/vits": "^0.0.3",
"@typescript-eslint/eslint-plugin": "^7.18.1-alpha.3",
"@typescript-eslint/parser": "^8.15.1-alpha.0",
"atsc": "^1.2.2",
"esbuild": "^0.23.1",
"esbuild-register": "^3.6.0",
"eslint": "^8.57.1",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-n": "^16.6.2",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"koishi": "^4.18.4",
"yakumo": "^1.0.0-beta.18",
"yakumo-esbuild": "^1.0.0-beta.7",
"yakumo-mocha": "^1.0.0-beta.2",
"yakumo-tsc": "^1.0.0-beta.5"
},
"peerDependencies": {
"koishi": "^4.18.1",
"koishi-plugin-chatluna": "^1.0.1-alpha.1"
},
"engines": {
"node": ">=18.0.0"
},
"scripts": {
"process-dynamic-import": "node ./processDynamicImport.js",
"fast-build": "yarn yakumo build",
"build": "yarn process-dynamic-import && yarn fast-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"
},
"resolutions": {
"@langchain/core": "0.3.18",
"js-tiktoken": "npm:@dingyi222666/js-tiktoken@^1.0.15"
},
"overrides": {
"@langchain/core": "0.3.18",
"js-tiktoken": "npm:@dingyi222666/js-tiktoken@^1.0.15"
},
"pnpm": {
"overrides": {
"@langchain/core": "0.3.18",
"js-tiktoken": "npm:@dingyi222666/js-tiktoken@^1.0.15"
}
},
"koishi": {
"description": {
"zh": "让大语言模型进行角色扮演,伪装成群友"
},
"service": {
"required": [
"chatluna"
],
"optional": [
"vits"
]
}
}
}