package.json•861 B
{
  "name": "mcp-knowledge-graph",
  "version": "1.2.0",
  "description": "MCP server enabling persistent memory for AI models through a local knowledge graph",
  "license": "MIT",
  "author": "Shane Holloman",
  "homepage": "https://github.com/shaneholloman/mcp-knowledge-graph",
  "bugs": "https://github.com/shaneholloman/mcp-knowledge-graph/issues",
  "type": "module",
  "engines": {
    "node": ">=18.0.0"
  },
  "bin": {
    "mcp-knowledge-graph": "dist/index.js"
  },
  "files": [
    "dist"
  ],
  "scripts": {
    "build": "tsc && shx chmod +x dist/*.js",
    "prepare": "npm run build",
    "watch": "tsc --watch"
  },
  "dependencies": {
    "@modelcontextprotocol/sdk": "1.0.1",
    "minimist": "^1.2.8"
  },
  "devDependencies": {
    "@types/minimist": "^1.2.5",
    "@types/node": "^22.9.3",
    "shx": "^0.3.4",
    "typescript": "^5.6.2"
  }
}