Files
copilotkit__copilotkit/examples/teams/package.json
Austin Merrick 1aa40c7994 feat(examples): Microsoft Teams bot example with CSV→chart, file uploads, and HITL
Adds examples/teams: a runnable Teams bot built on @copilotkit/bot-teams.
Demonstrates rendering charts from uploaded CSV files, inbound file
handling over the Graph API, and human-in-the-loop confirmation flows,
plus the Teams app manifest and packaging scripts.
2026-06-25 12:56:04 -07:00

33 lines
1.1 KiB
JSON

{
"name": "teams-example",
"version": "0.0.1",
"private": true,
"description": "Runnable demo for @copilotkit/bot-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/bot @copilotkit/bot-teams @copilotkit/bot-ui @copilotkit/runtime",
"playground": "agentsplayground",
"package": "node appPackage/package.mjs",
"check-types": "tsc --noEmit -p tsconfig.json",
"test": "vitest run"
},
"dependencies": {
"@copilotkit/bot": "workspace:*",
"@copilotkit/bot-teams": "workspace:*",
"@copilotkit/bot-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"
}
}