{
  "name": "@chat-adapter/teams",
  "version": "4.31.0",
  "description": "Microsoft Teams adapter for Chat SDK — Bot Framework webhooks, Adaptive Cards, and Graph API",
  "type": "module",
  "engines": {
    "node": ">=20"
  },
  "main": "./dist/index.js",
  "module": "./dist/index.js",
  "types": "./dist/index.d.ts",
  "exports": {
    ".": {
      "types": "./dist/index.d.ts",
      "import": "./dist/index.js"
    },
    "./api": {
      "types": "./dist/api.d.ts",
      "import": "./dist/api.js"
    },
    "./cards": {
      "types": "./dist/cards.d.ts",
      "import": "./dist/cards.js"
    },
    "./format": {
      "types": "./dist/format.d.ts",
      "import": "./dist/format.js"
    },
    "./graph": {
      "types": "./dist/graph.d.ts",
      "import": "./dist/graph.js"
    },
    "./modals": {
      "types": "./dist/modals.d.ts",
      "import": "./dist/modals.js"
    },
    "./webhook": {
      "types": "./dist/webhook.d.ts",
      "import": "./dist/webhook.js"
    }
  },
  "files": [
    "dist"
  ],
  "dependencies": {
    "@microsoft/teams.api": "^2.0.8",
    "@microsoft/teams.apps": "^2.0.8",
    "@microsoft/teams.cards": "^2.0.8",
    "@microsoft/teams.graph-endpoints": "^2.0.8",
    "@chat-adapter/shared": "4.31.0",
    "chat": "4.31.0"
  },
  "devDependencies": {
    "@microsoft/teams.graph": "^2.0.8",
    "@types/node": "^25.3.2",
    "tsup": "^8.3.5",
    "typescript": "^5.7.2",
    "vitest": "^4.0.18"
  },
  "repository": {
    "type": "git",
    "url": "git+https://github.com/vercel/chat.git",
    "directory": "packages/adapter-teams"
  },
  "homepage": "https://chat-sdk.dev/adapters/official/teams",
  "bugs": {
    "url": "https://github.com/vercel/chat/issues"
  },
  "publishConfig": {
    "access": "public"
  },
  "keywords": [
    "chat",
    "chat-sdk",
    "chatbot",
    "teams",
    "microsoft-teams",
    "microsoft",
    "bot",
    "adapter",
    "bot-framework",
    "messaging",
    "ai-agent",
    "ai-sdk",
    "vercel"
  ],
  "license": "MIT",
  "scripts": {
    "build": "tsup",
    "dev": "tsup --watch",
    "test": "vitest run --coverage",
    "test:watch": "vitest",
    "typecheck": "tsc --noEmit",
    "clean": "rm -rf dist"
  }
}