-
-
Notifications
You must be signed in to change notification settings - Fork 48
Expand file tree
/
Copy pathpackage.json
More file actions
99 lines (99 loc) · 3.65 KB
/
package.json
File metadata and controls
99 lines (99 loc) · 3.65 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
{
"name": "@root/chatluna-koishi",
"version": "1.0.0",
"workspaces": [
"packages/*"
],
"type": "module",
"private": true,
"license": "AGPL-3.0",
"scripts": {
"process-dynamic-import": "yarn tsx ./scripts/processDynamicImport.ts",
"fast-build": "yakumo build",
"build": "yarn process-dynamic-import --lint && yarn fast-build shared-prompt-renderer && yarn fast-build core && yarn fast-build",
"bump": "yakumo version",
"dep": "yakumo upgrade",
"test": "cross-env TS_NODE_PROJECT=packages/core/tests/tsconfig.json yakumo mocha -r tsconfig-paths/register -r esbuild-register -r yml-register --exit",
"pub": "yakumo publish --tag latest",
"pub:next": "yakumo publish --tag next",
"lint": "yarn eslint packages --cache --ext=ts",
"lint-fix": "yarn eslint packages --cache --ext=ts --fix"
},
"devDependencies": {
"@initencounter/vits": "^0.0.3",
"@koishijs/cache": "^2.1.0",
"@koishijs/censor": "^1.1.0",
"@koishijs/client": "^5.30.9",
"@koishijs/plugin-database-memory": "^3.7.0",
"@koishijs/plugin-hmr": "^1.2.9",
"@koishijs/scripts": "^4.6.1",
"@types/chai": "^4.3.20",
"@types/he": "^1.2.3",
"@types/js-yaml": "^4.0.9",
"@types/marked": "^6.0.0",
"@types/mocha": "^10.0.10",
"@types/node": "^22.18.7",
"@types/qrcode": "^1.5.5",
"@typescript-eslint/eslint-plugin": "^7.18.1-alpha.3",
"@typescript-eslint/parser": "^8.45.1-alpha.0",
"atsc": "^2.1.0",
"chai": "^4.4.1",
"cross-env": "^7.0.3",
"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": "^17.23.1",
"eslint-plugin-prettier": "^5.5.4",
"eslint-plugin-promise": "^7.2.1",
"faiss-node": "^0.5.1",
"he": "^1.2.0",
"highlight.js": "^11.11.1",
"https-proxy-agent": "^7.0.6",
"js-tiktoken": "npm:@dingyi222666/js-tiktoken@^1.0.21",
"js-yaml": "^4.1.0",
"koishi": "^4.18.9",
"koishi-plugin-cache-database": "^2.1.0",
"koishi-plugin-chatluna-storage-service": "^1.0.6",
"koishi-plugin-markdown": "^1.1.1",
"koishi-plugin-puppeteer": "^3.9.0",
"marked": "^15.0.12",
"marked-highlight": "^2.2.2",
"marked-katex-extension": "^5.1.5",
"mocha": "^9.2.2",
"prettier": "^3.6.2",
"qrcode": "^1.5.4",
"socks-proxy-agent": "^8.0.5",
"tsconfig-paths": "^4.2.0",
"tsx": "^4.20.6",
"typescript": "^5.9.2",
"undici": "^6.21.3",
"user-agents": "^2.0.0-alpha.679",
"ws": "^8.18.3",
"yakumo": "^1.0.0-beta.20",
"yakumo-esbuild": "^1.0.0-beta.7",
"yakumo-mocha": "^1.0.0-beta.2",
"yakumo-tsc": "^1.0.0-beta.5",
"yml-register": "^1.2.5",
"zod": "3.25.76",
"zod-to-json-schema": "^3.24.6"
},
"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"
}
},
"repository": "git@github.com:ChatLunaLab/chatluna.git",
"author": "dingyi222666 <dingyi222666@foxmail.com>"
}