-
Notifications
You must be signed in to change notification settings - Fork 103
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 944 Bytes
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 944 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
33
34
35
{
"name": "mcp-knowledge-graph",
"version": "1.4.0",
"description": "MCP server enabling persistent memory for AI models through a local knowledge graph",
"license": "MIT",
"author": "Shane Holloman",
"homepage": "https://github.com/shaneholloman/mcp-knowledge-graph",
"bugs": "https://github.com/shaneholloman/mcp-knowledge-graph/issues",
"type": "module",
"engines": {
"node": ">=22.0.0"
},
"bin": {
"mcp-knowledge-graph": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"watch": "tsc --watch",
"test": "tsc -p tsconfig.test.json && node --test \"dist/test/**/*.test.js\""
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1",
"minimist": "^1.2.8"
},
"devDependencies": {
"@types/minimist": "^1.2.5",
"@types/node": "^22.9.3",
"shx": "^0.3.4",
"typescript": "^5.6.2"
}
}