{
  "name": "hmem-mcp",
  "version": "8.0.0",
  "description": "hmem \u2014 persistent, hierarchical, humanlike memory for AI agents (MCP). Because sessions shouldn't start from zero.",
  "author": "Bumblebiber",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/Bumblebiber/hmem.git"
  },
  "homepage": "https://github.com/Bumblebiber/hmem#readme",
  "bugs": {
    "url": "https://github.com/Bumblebiber/hmem/issues"
  },
  "funding": {
    "type": "ko-fi",
    "url": "https://ko-fi.com/bumblebiber"
  },
  "mcpName": "io.github.Bumblebiber/hmem",
  "main": "dist/index.js",
  "types": "dist/index.d.ts",
  "bin": {
    "hmem": "dist/cli.js",
    "hmem-curate": "dist/mcp-curate-server.js"
  },
  "exports": {
    ".": {
      "import": "./dist/index.js",
      "types": "./dist/index.d.ts"
    }
  },
  "pi": {
    "extensions": [
      "./dist/extensions/pi-hmem"
    ]
  },
  "files": [
    "dist",
    "skills",
    "!skills/*-workspace",
    "scripts",
    "opencode-plugin",
    "plugins",
    "prebuilds",
    "server.json",
    "README.md",
    "LICENSE",
    "hmem.config.example.json",
    "hmem_developer.hmem"
  ],
  "scripts": {
    "build": "tsc",
    "start": "node dist/mcp-server.js",
    "dev": "tsc --watch",
    "test": "vitest run",
    "test:watch": "vitest",
    "typecheck": "tsc -p tsconfig.test.json",
    "prepublishOnly": "npm run build",
    "postinstall": "node scripts/use-prebuild.cjs && node -e \"try{require('child_process').execSync('node dist/cli.js update-skills',{stdio:'ignore'})}catch(e){}\""
  },
  "type": "module",
  "engines": {
    "node": ">=18"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "ai",
    "memory",
    "agents",
    "llm",
    "sqlite",
    "humanlike",
    "hierarchical",
    "long-term-memory",
    "claude",
    "gemini",
    "persistent-memory"
  ],
  "devDependencies": {
    "@earendil-works/pi-coding-agent": "^0.74.0",
    "@types/better-sqlite3": "^7.6.13",
    "@types/node": "^25.2.3",
    "typescript": "^5.9.3",
    "vitest": "^4.1.1"
  },
  "dependencies": {
    "@anthropic-ai/sdk": "^0.96.0",
    "@modelcontextprotocol/sdk": "^1.26.0",
    "openai": "^6.37.0",
    "zod": "^4.3.6"
  },
  "optionalDependencies": {
    "better-sqlite3": "^12.6.2"
  },
  "peerDependencies": {
    "@earendil-works/pi-coding-agent": ">=0.74.0"
  },
  "peerDependenciesMeta": {
    "@earendil-works/pi-coding-agent": {
      "optional": true
    }
  }
}
