forked from mmethodz/dreamgraph
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.18 KB
/
Copy pathpackage.json
File metadata and controls
49 lines (49 loc) · 1.18 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
{
"name": "dreamgraph",
"version": "7.0.0",
"description": "DreamGraph — A cognitive dreaming engine for MCP servers. Builds, explores, and self-heals knowledge graphs through speculative reasoning.",
"type": "module",
"bin": {
"dreamgraph": "./dist/index.js",
"dg": "./dist/cli/dg.js"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"start": "node dist/index.js",
"start:sse": "node dist/index.js --transport http",
"prepare": "npm run build",
"seed": "node scripts/seed-example.mjs",
"test": "vitest run",
"test:watch": "vitest"
},
"keywords": [
"mcp",
"cognitive",
"dreaming",
"knowledge-graph",
"ai",
"reasoning",
"model-context-protocol"
],
"author": "",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/mmethodz/dreamgraph.git"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.27.1",
"cheerio": "^1.2.0",
"pg": "^8.20.0",
"turndown": "^7.2.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/node": "^25.5.0",
"@types/pg": "^8.20.0",
"@types/turndown": "^5.0.6",
"typescript": "^5.9.3",
"vitest": "^4.1.2"
}
}