{
  "name": "@inupedia/spotlight-memory",
  "version": "0.9.1",
  "description": "Optional exact and semantic answer-cache primitives for Inupedia Spotlight",
  "type": "module",
  "license": "MIT",
  "author": "inupedia",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./node": {
      "types": "./dist/node/index.d.ts",
      "import": "./dist/node/index.js"
    }
  },
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "publishConfig": {
    "access": "public"
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@zilliz/milvus2-sdk-node": "^2.5.5",
    "ioredis": "^5.6.1",
    "@inupedia/spotlight-protocol": "0.9.1"
  },
  "devDependencies": {
    "@types/node": "^22.10.0",
    "typescript": "^5.9.3",
    "vitest": "^4.0.18"
  },
  "scripts": {
    "clean": "rm -rf dist",
    "typecheck": "tsc -p tsconfig.json --noEmit && tsc -p tsconfig.node.json --noEmit",
    "build": "pnpm run clean && tsc -p tsconfig.json && tsc -p tsconfig.node.json && pnpm run verify:exports",
    "verify:exports": "node ../scripts/verify-package-exports.mjs",
    "test": "vitest run"
  }
}