Files
copilotkit__copilotkit/examples/teams/package.json
Benjamin Taylor b394f06fdc refactor(channels): rename @copilotkit/bot* packages to @copilotkit/channels* (OSS-438)
Renames the Bots SDK to the Channels SDK. Names only — no behavior change.

- 8 packages @copilotkit/bot* -> @copilotkit/channels* (git mv dirs, names,
  workspace: cross-deps). Now includes @copilotkit/bot-intelligence ->
  @copilotkit/channels-intelligence (landed on main via #5761; unpublished, so
  renamed fresh with the family).
- release.config.json scope keys + versionSource; ReleaseScope union;
  canary/stable-release/publish-release scope dropdowns; verify script
- examples/slack (Kite) + examples/teams: deps, jsxImportSource, imports
- showcase/shell-docs: content dirs docs/bots->docs/channels and
  reference/bot->reference/channels, nav registry, redirects

createBot and other API names unchanged. Old @copilotkit/bot* to be deprecated
after the new packages publish (bot-intelligence was never published).

Re-derived onto latest main (was conflicting after #5761 landed).

Refs OSS-438
2026-07-08 13:27:35 -05:00

33 lines
1.1 KiB
JSON

{
"name": "teams-example",
"version": "0.0.1",
"private": true,
"description": "Runnable demo for @copilotkit/channels-teams: streamed replies, Adaptive Cards, and a human-in-the-loop approval gate, testable in the Microsoft 365 Agents Playground with no Microsoft credentials.",
"license": "MIT",
"type": "module",
"scripts": {
"dev": "tsx watch app/index.tsx",
"start": "tsx app/index.tsx",
"build": "pnpm exec nx run-many -t build -p @copilotkit/channels @copilotkit/channels-teams @copilotkit/channels-ui @copilotkit/runtime",
"playground": "agentsplayground",
"package": "node appPackage/package.mjs",
"check-types": "tsc --noEmit -p tsconfig.json",
"test": "vitest run"
},
"dependencies": {
"@copilotkit/channels": "workspace:*",
"@copilotkit/channels-teams": "workspace:*",
"@copilotkit/channels-ui": "workspace:*",
"@copilotkit/runtime": "workspace:*",
"zod": "^3.25.76"
},
"devDependencies": {
"@microsoft/m365agentsplayground": "^0.2.27",
"@types/node": "^22.10.0",
"dotenv": "^16.4.5",
"tsx": "^4.19.2",
"typescript": "^5.6.3",
"vitest": "^4.1.3"
}
}