{
  "name": "@happyvertical/smrt-chat",
  "version": "0.43.2",
  "description": "Chat rooms, DMs, threads, and agent conversations for the SMRT framework",
  "type": "module",
  "smrtRawPrimitives": "strict",
  "main": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./client": {
      "types": "./dist/client.d.ts",
      "import": "./dist/client.js"
    },
    "./data-surface-bridge": {
      "types": "./dist/data-surface-bridge.d.ts",
      "import": "./dist/data-surface-bridge.js"
    },
    "./data-surface": {
      "types": "./dist/data-surface-bridge.d.ts",
      "import": "./dist/data-surface-bridge.js"
    },
    "./ui": {
      "types": "./dist/ui.d.ts",
      "import": "./dist/ui.js"
    },
    "./manifest": "./dist/manifest.json",
    "./manifest.json": "./dist/manifest.json",
    "./playground": {
      "types": "./dist/playground.d.ts",
      "import": "./dist/playground.js"
    },
    "./internal/agent-runtime": {
      "types": "./dist/internal/agent-runtime.d.ts",
      "import": "./dist/internal/agent-runtime.js"
    },
    "./svelte": {
      "types": "./dist/svelte/index.d.ts",
      "svelte": "./dist/svelte/index.js",
      "import": "./dist/svelte/index.js"
    }
  },
  "files": [
    "dist",
    "CLAUDE.md",
    "AGENTS.md"
  ],
  "keywords": [
    "smrt",
    "chat",
    "messaging",
    "rooms",
    "threads",
    "agents"
  ],
  "author": "HappyVertical",
  "license": "MIT",
  "repository": {
    "type": "git",
    "url": "https://github.com/happyvertical/smrt.git",
    "directory": "packages/chat"
  },
  "publishConfig": {
    "registry": "https://registry.npmjs.org",
    "access": "public"
  },
  "dependencies": {
    "@happyvertical/ai": "^0.88.0",
    "@happyvertical/sql": "^0.88.0",
    "@happyvertical/smrt-core": "0.43.2",
    "@happyvertical/smrt-agents": "0.43.2",
    "@happyvertical/smrt-personas": "0.43.2",
    "@happyvertical/smrt-tenancy": "0.43.2",
    "@happyvertical/smrt-types": "0.43.2",
    "@happyvertical/smrt-ui": "0.43.2",
    "@happyvertical/smrt-users": "0.43.2"
  },
  "peerDependencies": {
    "svelte": "^5.56.4"
  },
  "peerDependenciesMeta": {
    "svelte": {
      "optional": true
    }
  },
  "devDependencies": {
    "@sveltejs/kit": "^2.69.1",
    "@sveltejs/package": "^2.5.8",
    "@sveltejs/vite-plugin-svelte": "^7.1.2",
    "@types/node": "24.13.2",
    "fast-glob": "^3.3.3",
    "svelte": "^5.56.4",
    "svelte-check": "^4.7.1",
    "typescript": "5.9.3",
    "vite": "8.1.4",
    "vitest": "4.1.10",
    "@happyvertical/smrt-playground": "0.43.2",
    "@happyvertical/smrt-vitest": "0.43.2",
    "@happyvertical/smrt-profiles": "0.43.2"
  },
  "scripts": {
    "build": "SMRT_PACKAGE_BUILD=1 vite build --mode library && SMRT_PACKAGE_BUILD=1 svelte-package -i src/svelte -o dist/svelte --tsconfig tsconfig.svelte.json",
    "build:watch": "vite build --mode library --watch",
    "clean": "rm -rf dist",
    "dev": "vite dev",
    "test": "vitest run",
    "typecheck": "svelte-kit sync && tsc -p tsconfig.typecheck.json && node ../../scripts/svelte-check-a11y.mjs --tsconfig ./tsconfig.kit.json",
    "check": "svelte-kit sync && pnpm exec svelte-check --tsconfig ./tsconfig.kit.json",
    "verify:pack": "node ../../scripts/verify-package-types-exports.js ."
  }
}