-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.01 KB
/
Copy pathpackage.json
File metadata and controls
41 lines (41 loc) · 1.01 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
{
"name": "graph-memory",
"version": "0.1.0",
"description": "Graph-based memory system for Claude Code using Neo4j",
"type": "module",
"main": "dist/mcp-server/index.js",
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest run",
"test:watch": "vitest",
"test:coverage": "vitest run --coverage",
"test:local": "bash scripts/test-with-neo4j.sh",
"test:coverage:local": "bash scripts/test-with-neo4j.sh --coverage",
"start": "node dist/mcp-server/index.js",
"schema:init": "node dist/shared/schema-init.js"
},
"keywords": [
"mcp",
"neo4j",
"memory",
"graph"
],
"license": "MIT",
"engines": {
"node": ">=18.0.0"
},
"dependencies": {
"@huggingface/transformers": "^4.2.0",
"@modelcontextprotocol/sdk": "^1.29.0",
"jose": "^6.2.3",
"neo4j-driver": "^6.0.1",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.2",
"@vitest/coverage-v8": "^4.1.5",
"typescript": "^6.0.2",
"vitest": "^4.1.3"
}
}