forked from willynikes2/knowledge-base-server
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
27 lines (27 loc) · 660 Bytes
/
package.json
File metadata and controls
27 lines (27 loc) · 660 Bytes
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
{
"name": "knowledge-base-server",
"version": "1.0.0",
"description": "Portable knowledge base with web dashboard and MCP server for AI tools",
"type": "module",
"bin": {
"kb": "./bin/kb.js"
},
"main": "./src/index.js",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@modelcontextprotocol/sdk": "^1.0.0",
"bcryptjs": "^2.4.3",
"better-auth": "^1.5.5",
"better-sqlite3": "^11.0.0",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^4.21.0",
"gray-matter": "^4.0.3",
"multer": "^1.4.5-lts.1",
"pdf-parse": "^1.1.1",
"zod": "^4.3.6"
}
}