-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 815 Bytes
/
Copy pathpackage.json
File metadata and controls
32 lines (32 loc) · 815 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": "mcp-neo4j-visualizer",
"version": "0.2.6",
"description": "A Model Context Protocol server to visualize neo4j query results",
"private": false,
"type": "module",
"bin": {
"neo4j-visualizer": "./build/index.js"
},
"files": [
"build"
],
"scripts": {
"build": "tsc && node -e \"require('fs').chmodSync('build/index.js', '755')\"",
"prepare": "npm run build",
"watch": "tsc --watch",
"inspector": "npx @modelcontextprotocol/inspector build/index.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "0.6.0",
"canvas": "^3.1.0",
"d3": "^7.9.0",
"html2canvas": "^1.4.1",
"jsdom": "^26.1.0"
},
"devDependencies": {
"@types/d3": "^7.4.3",
"@types/jsdom": "^21.1.7",
"@types/node": "^20.11.24",
"typescript": "^5.3.3"
}
}