{
  "name": "memorizedmcp-ts",
  "version": "1.2.0",
  "description": "A Bun-powered MCP server that provides hybrid memory, document intelligence, and knowledge-graph tooling.",
  "type": "module",
  "packageManager": "bun@1.3.0",
  "main": "dist/index.js",
  "module": "dist/index.js",
  "types": "src/index.ts",
  "exports": {
    ".": {
      "types": "./src/index.ts",
      "default": "./dist/index.js"
    }
  },
  "bin": {
    "memorizedmcp-ts": "bin/memorizedmcp-ts.js"
  },
  "engines": {
    "bun": ">=1.3.0"
  },
  "files": [
    "bin/",
    "dist/",
    "src/",
    "sql/",
    "generated/schemas/",
    "README.md",
    "CHANGELOG.md",
    "LICENSE"
  ],
  "keywords": [
    "mcp",
    "model-context-protocol",
    "memory",
    "knowledge-graph",
    "bun"
  ],
  "homepage": "https://github.com/charl/MemorizedMCP-TS#readme",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/charl/MemorizedMCP-TS.git"
  },
  "bugs": {
    "url": "https://github.com/charl/MemorizedMCP-TS/issues"
  },
  "license": "MIT",
  "scripts": {
    "dev": "bun --watch src/index.ts",
    "build": "bun build ./src/index.ts --outdir dist --target bun",
    "start": "bun run dist/index.js",
    "lint": "biome check .",
    "format": "biome format .",
    "test": "vitest run",
    "test:watch": "vitest watch",
    "migrate": "bun run src/scripts/migrate.ts",
    "generate-schemas": "bun run src/scripts/generate-schemas.ts",
    "bench": "bun run src/scripts/benchmarks.ts",
    "backup": "bun run src/scripts/backup.ts",
    "restore": "bun run src/scripts/restore.ts",
    "export:memories": "bun run src/scripts/export-memories.ts",
    "import:memories": "bun run src/scripts/import-memories.ts",
    "prepare-release": "bun run lint && bun test && bun run build && bun run generate-schemas"
  },
  "prepublishOnly": "bun test && bun run build && bun run generate-schemas",
  "dependencies": {
    "@modelcontextprotocol/sdk": "^1.21.1",
    "@xenova/transformers": "^2.17.2",
    "compromise": "^14.14.4",
    "dotenv": "^17.2.3",
    "fast-glob": "^3.3.3",
    "fs-extra": "^11.3.2",
    "lru-cache": "^11.2.2",
    "node-cron": "^4.2.1",
    "pino": "^10.1.0",
    "unpdf": "^1.4.0",
    "uuid": "^13.0.0",
    "vectra": "^0.11.1",
    "yaml": "^2.8.1",
    "zod": "^3.23.8",
    "zod-to-json-schema": "^3.24.6"
  },
  "devDependencies": {
    "@types/bun": "latest",
    "@types/node": "^24.10.0",
    "@types/pino": "^7.0.5",
    "biome": "^0.3.3",
    "typescript": "^5.9.3",
    "vitest": "^4.0.8"
  },
  "author": "Memorized Contributors"
}
