-
Notifications
You must be signed in to change notification settings - Fork 28
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 722 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 722 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
28
29
30
31
32
{
"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/server.js",
"files": [
"bin/",
"src/",
"openapi.json"
],
"engines": {
"node": ">=20.0.0"
},
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@modelcontextprotocol/sdk": "^1.0.0",
"bcryptjs": "^2.4.3",
"better-auth": "^1.5.5",
"better-sqlite3": "^12.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"
}
}