-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
96 lines (96 loc) · 2.66 KB
/
package.json
File metadata and controls
96 lines (96 loc) · 2.66 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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
{
"name": "@graphmemory/server",
"version": "1.9.5",
"description": "MCP server for semantic graph memory from markdown files",
"main": "dist/cli/index.js",
"bin": {
"graphmemory": "dist/cli/index.js"
},
"scripts": {
"build": "npm run build:server && npm run build:ui",
"build:server": "rm -rf dist && tsc -p tsconfig.build.json && tsc-alias -p tsconfig.build.json",
"build:ui": "cd ui && npm run build && cp -r dist ../dist/ui",
"start": "node dist/index.js",
"dev": "tsc --watch",
"cli": "node dist/cli/index.js",
"cli:dev": "tsx src/cli/index.ts",
"test": "NODE_OPTIONS='--experimental-vm-modules' jest",
"test:watch": "NODE_OPTIONS='--experimental-vm-modules' jest --watch",
"site:dev": "cd site && npm start",
"site:build": "cd site && npm run build",
"site:serve": "cd site && npm run serve"
},
"repository": {
"type": "git",
"url": "https://github.com/graph-memory/graphmemory.git"
},
"homepage": "https://github.com/graph-memory/graphmemory",
"bugs": "https://github.com/graph-memory/graphmemory/issues",
"keywords": [
"mcp",
"model-context-protocol",
"graph",
"memory",
"semantic-search",
"knowledge-graph",
"embeddings",
"documentation",
"code-indexing"
],
"author": "prih <prihmail@gmail.com>",
"license": "Elastic-2.0",
"engines": {
"node": ">=22"
},
"files": [
"dist/",
"README.md"
],
"publishConfig": {
"access": "public"
},
"dependencies": {
"@huggingface/transformers": "^3.8.1",
"@modelcontextprotocol/sdk": "^1.27.1",
"@vscode/tree-sitter-wasm": "^0.3.0",
"chokidar": "^5.0.0",
"commander": "^14.0.3",
"cookie-parser": "^1.4.7",
"cors": "^2.8.6",
"dotenv": "^17.3.1",
"express": "^5.2.1",
"express-rate-limit": "^8.3.1",
"graphology": "^0.26.0",
"jsonwebtoken": "^9.0.3",
"micromatch": "^4.0.8",
"mime": "^4.1.0",
"multer": "^2.1.1",
"parse-duration": "^2.1.5",
"pino": "^10.3.1",
"pino-pretty": "^13.1.3",
"redis": "^5.11.0",
"web-tree-sitter": "^0.26.7",
"ws": "^8.19.0",
"yaml": "^2.8.2",
"zod": "^4.3.6"
},
"devDependencies": {
"@types/cookie-parser": "^1.4.10",
"@types/cors": "^2.8.19",
"@types/express": "^5.0.6",
"@types/jest": "^30.0.0",
"@types/jsonwebtoken": "^9.0.10",
"@types/micromatch": "^4.0.10",
"@types/multer": "^2.1.0",
"@types/node": "^25.4.0",
"@types/supertest": "^7.2.0",
"@types/ws": "^8.18.1",
"graphology-types": "^0.24.8",
"jest": "^30.3.0",
"supertest": "^7.2.2",
"ts-jest": "^29.4.6",
"tsc-alias": "^1.8.16",
"tsx": "^4.21.0",
"typescript": "^5.9.3"
}
}