{
  "name": "hippo-memory",
  "version": "1.26.4",
  "description": "Biologically-inspired memory system for AI agents. Decay by default, strength through use.",
  "type": "module",
  "main": "./dist/index.js",
  "exports": {
    ".": "./dist/index.js"
  },
  "openclaw": {
    "extensions": [
      "./extensions/openclaw-plugin/index.ts"
    ]
  },
  "bin": {
    "hippo": "bin/hippo.js"
  },
  "files": [
    "dist",
    "dist-ui",
    "bin",
    "scripts/postinstall.cjs",
    "openclaw.plugin.json",
    "extensions/openclaw-plugin"
  ],
  "scripts": {
    "baseline": "npm run build && npm test",
    "build": "tsc && tsc -p tsconfig.benchmarks.json",
    "dev": "tsc --watch",
    "pretest": "npm run build",
    "test": "vitest run",
    "test:watch": "vitest",
    "postinstall": "node scripts/postinstall.cjs",
    "smoke:pack": "node scripts/smoke-pack.mjs",
    "smoke:openclaw-install": "node scripts/smoke-openclaw-install.mjs",
    "build:ui": "cd ui && npm install && npm run build",
    "build:all": "npm run build && npm run build:ui",
    "prepublishOnly": "node scripts/check-manifest-versions.mjs && node scripts/check-em-dashes-in-release-notes.mjs && node scripts/check-graph-writes.mjs && npm run build:all"
  },
  "keywords": [
    "memory",
    "ai",
    "agents",
    "llm",
    "claude",
    "context",
    "recall",
    "episodic",
    "semantic",
    "embeddings",
    "hybrid-search"
  ],
  "author": "Keith",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/kitfunso/hippo-memory.git"
  },
  "homepage": "https://hippo-memory.com",
  "engines": {
    "node": ">=22.5.0"
  },
  "devDependencies": {
    "@types/node": "^20.11.0",
    "typescript": "^5.4.0",
    "vitest": "^1.4.0"
  },
  "peerDependenciesMeta": {
    "@xenova/transformers": {
      "optional": true
    }
  },
  "optionalDependencies": {
    "@huggingface/transformers": "^4.2.0",
    "@xenova/transformers": "^2.17.2"
  }
}
