-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 1013 Bytes
/
Copy pathpackage.json
File metadata and controls
34 lines (34 loc) · 1013 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
33
34
{
"name": "mcp-server-memory",
"version": "1.0.3",
"description": "MCP server for enabling memory for Claude through a knowledge graph",
"license": "MIT",
"author": "Quan Le (Kwan96)",
"homepage": "https://github.com/kwanLeeFrmVi/mcp-server-memory",
"bugs": "https://github.com/kwanLeeFrmVi/mcp-server-memory/issues",
"type": "module",
"bin": {
"mcp-server-memory": "dist/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc && shx chmod +x dist/*.js",
"build:bun": "bun build ./index.ts --outdir ./dist --format esm --target bun --minify && shx chmod +x dist/*.js",
"start": "bun run dist/index.js",
"prepare": "npm run build",
"inspect": "npx @modelcontextprotocol/inspector node dist/index.js",
"watch": "tsc --watch"
},
"dependencies": {
"@modelcontextprotocol/sdk": "1.0.1"
},
"devDependencies": {
"@types/node": "^22",
"shx": "^0.3.4",
"typescript": "^5.6.2",
"@types/bun": "latest"
},
"module": "index.ts"
}