{
  "name": "claude-cortex",
  "version": "1.16.0",
  "description": "Brain-like memory system for Claude Code - solves context compaction and memory persistence",
  "main": "dist/index.js",
  "type": "module",
  "scripts": {
    "build": "tsc",
    "build:all": "tsc && cd dashboard && npm run build",
    "start": "node dist/index.js",
    "start:api": "node dist/index.js --mode api",
    "start:dashboard": "node dist/index.js --dashboard",
    "dev": "tsx src/index.ts",
    "dev:api": "tsx src/index.ts --mode api",
    "dev:dashboard": "tsx src/index.ts --dashboard",
    "watch": "tsc --watch",
    "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
    "test:watch": "node --experimental-vm-modules node_modules/jest/bin/jest.js --watch",
    "test:coverage": "node --experimental-vm-modules node_modules/jest/bin/jest.js --coverage",
    "audit:security": "npm audit --audit-level=moderate",
    "prepublishOnly": "npm run build"
  },
  "keywords": [
    "claude",
    "mcp",
    "memory",
    "ai",
    "context"
  ],
  "author": "Michael Kyriacou",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "git+https://github.com/mkdelta221/claude-cortex.git"
  },
  "homepage": "https://github.com/mkdelta221/claude-cortex#readme",
  "bugs": {
    "url": "https://github.com/mkdelta221/claude-cortex/issues"
  },
  "engines": {
    "node": ">=18.0.0"
  },
  "dependencies": {
    "@huggingface/transformers": "^3.7.2",
    "@modelcontextprotocol/sdk": "^1.0.0",
    "better-sqlite3": "^11.0.0",
    "cors": "^2.8.5",
    "express": "^4.21.0",
    "ws": "^8.18.0",
    "zod": "^3.23.0"
  },
  "devDependencies": {
    "@types/better-sqlite3": "^7.6.11",
    "@types/cors": "^2.8.17",
    "@types/express": "^5.0.0",
    "@types/jest": "^30.0.0",
    "@types/node": "^22.0.0",
    "@types/ws": "^8.5.13",
    "jest": "^30.2.0",
    "ts-jest": "^29.4.6",
    "tsx": "^4.19.0",
    "typescript": "^5.6.0"
  },
  "bin": {
    "claude-cortex": "dist/index.js"
  },
  "files": [
    "dist",
    "dashboard",
    "hooks",
    "plugin",
    "scripts"
  ]
}
