-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
70 lines (70 loc) · 2.03 KB
/
Copy pathpackage.json
File metadata and controls
70 lines (70 loc) · 2.03 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
{
"name": "j5ed-knowledge-graph",
"version": "2.0.0",
"description": "A knowledge graph memory server for MCP with multi-agent tenant isolation, tiered search, index navigation, and three transport modes",
"keywords": [
"mcp",
"knowledge-graph",
"memory",
"multi-agent",
"model-context-protocol",
"tenant-isolation",
"ndjson",
"graph-database"
],
"author": "Meldrey <meldrey@arktechnwa.com>",
"license": "MIT",
"homepage": "https://github.com/ArkTechNWA/j5ed-knowledge-graph",
"repository": {
"type": "git",
"url": "https://github.com/ArkTechNWA/j5ed-knowledge-graph"
},
"bugs": "https://github.com/ArkTechNWA/j5ed-knowledge-graph/issues",
"bin": {
"j5ed-knowledge-graph": "dist/index.js"
},
"engines": {
"node": ">=18"
},
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"prepare": "npm run build",
"dev": "ts-node --esm src/index.ts",
"start": "node dist/index.js",
"start:sse": "node dist/index.js --sse --port 3100",
"migrate": "node dist/migrations/migrate-ndjson.js",
"start:http": "node dist/index.js --http --port 3100",
"watch": "tsc --watch",
"test": "NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "NODE_OPTIONS=--experimental-vm-modules jest --coverage",
"lint": "eslint src/**/*.ts",
"format": "prettier --write src/**/*.ts"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.25.2",
"@types/better-sqlite3": "^7.6.13",
"better-sqlite3": "^12.11.1",
"express": "^5.2.1",
"sqlite-vec": "^0.1.9"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/node": "^26",
"@typescript-eslint/eslint-plugin": "^8.62.0",
"@typescript-eslint/parser": "^8.62.0",
"eslint": "^10.5.0",
"globals": "^17.7.0",
"jest": "^30.4.2",
"prettier": "^3.2.5",
"shx": "^0.4.0",
"ts-jest": "^29.1.2",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
},
"type": "module",
"files": [
"dist"
]
}