{
  "name": "a24z-memory",
  "version": "0.5.75",
  "private": false,
  "description": "Standalone a24z Memory MCP server",
  "main": "dist/lib.js",
  "types": "dist/lib.d.ts",
  "bin": {
    "a24z-memory": "dist/mcp-cli.js",
    "alexandria": "dist/alexandria-cli.js"
  },
  "type": "module",
  "scripts": {
    "build": "bun run clean && bun run build:lib && bun run fix:imports && bun run build:mcp-cli && bun run build:alexandria-cli",
    "build:mcp-cli": "bun build/build-cli.js",
    "build:alexandria-cli": "bun build/build-alexandria-cli.js",
    "clean": "rm -rf dist",
    "build:lib": "tsc",
    "fix:imports": "bun build/fix-esm-imports.js",
    "prepare": "husky",
    "release": "semantic-release",
    "test": "bun test",
    "test:coverage": "bun test --coverage",
    "test:watch": "bun test --watch",
    "lint": "bunx eslint . --ext .ts,.js --max-warnings 0",
    "lint:fix": "bunx eslint . --ext .ts,.js --fix",
    "format": "bunx prettier --write .",
    "format:check": "bunx prettier --check .",
    "typecheck": "tsc --noEmit",
    "test:mcp": "./tests/test-mcp-build.sh",
    "test:mcp-server": "bun test tests/mcp-server.test.ts",
    "test:mcp-integration": "bun test tests/mcp-integration.test.ts",
    "test:mcp-all": "bun test tests/mcp-*.test.ts",
    "test:prerelease": "./scripts/test-prerelease.sh",
    "test:local-npx": "./scripts/test-local-npx.sh"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/a24z-ai/a24z-memory.git"
  },
  "keywords": [
    "mcp",
    "model-context-protocol",
    "a24z",
    "memory"
  ],
  "author": "a24z Team",
  "license": "MIT",
  "bugs": {
    "url": "https://github.com/a24z-ai/a24z-memory/issues"
  },
  "homepage": "https://a24z.ai",
  "engines": {
    "node": ">=18"
  },
  "dependencies": {
    "@a24z/alexandria-cli": "^0.2.0",
    "@a24z/alexandria-outpost": "^0.1.7",
    "@a24z/core-library": "^0.1.0",
    "@a24z/markdown-utils": "^0.1.1",
    "@modelcontextprotocol/sdk": "^1.0.4",
    "@types/compression": "^1.8.1",
    "@types/cors": "^2.8.19",
    "@types/express": "^5.0.3",
    "chalk": "^5.6.0",
    "commander": "^14.0.0",
    "compression": "^1.8.1",
    "cors": "^2.8.5",
    "express": "^5.1.0",
    "globby": "^14.1.0",
    "gpt-tokenizer": "^3.0.1",
    "ignore": "^7.0.5",
    "zod": "^3.25.76"
  },
  "devDependencies": {
    "@eslint/js": "^9.15.0",
    "@semantic-release/changelog": "^6.0.3",
    "@semantic-release/git": "^10.0.1",
    "@types/bun": "^1.1.20",
    "@types/node": "^22.15.26",
    "@typescript-eslint/eslint-plugin": "^8.41.0",
    "@typescript-eslint/parser": "^8.41.0",
    "esbuild": "^0.25.9",
    "eslint": "^9.34.0",
    "eslint-config-prettier": "^10.1.8",
    "fast-glob": "^3.3.3",
    "husky": "^9.1.7",
    "lint-staged": "^16.1.5",
    "prettier": "^3.6.2",
    "semantic-release": "^24.2.7",
    "typescript": "^5.6.3"
  },
  "lint-staged": {
    "src/**/*.{ts,js}": [
      "eslint --fix",
      "prettier --write"
    ],
    "tests/**/*.{ts,js}": [
      "eslint --fix",
      "prettier --write"
    ]
  },
  "files": [
    "dist",
    "templates",
    "README.md",
    "USAGE_GUIDE.md",
    "LIBRARY_USAGE.md",
    "LICENSE"
  ]
}
