@microsoft/teams-ai
Version:
SDK focused on building AI based applications for Microsoft Teams.
82 lines (81 loc) • 2.49 kB
JSON
{
"name": "@microsoft/teams-ai",
"author": "Microsoft Corp.",
"description": "SDK focused on building AI based applications for Microsoft Teams.",
"version": "1.7.4",
"license": "MIT",
"keywords": [
"botbuilder",
"botframework",
"bots",
"chatbots",
"teams",
"ai"
],
"engines": {
"node": ">=18.x"
},
"bugs": {
"url": "https://github.com/microsoft/teams-ai/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/teams-ai.git"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"peerDependencies": {
"botbuilder": "^4.23.1",
"openai": "4.77.4"
},
"dependencies": {
"@azure/msal-node": "^2.16.1",
"axios": "^1.7.5",
"botbuilder-dialogs": "^4.23.1",
"botframework-connector": "^4.23.1",
"botframework-schema": "^4.23.1",
"botframework-streaming": "^4.23.1",
"gpt-tokenizer": "^2.6.2",
"json-colorizer": "^2.2.2",
"jsonschema": "1.5.0",
"uuid": "^9.0.1",
"yaml": "^2.7.0"
},
"resolutions": {
"follow-redirects": "^1.15.0"
},
"devDependencies": {
"@types/assert": "^1.5.11",
"@types/express": "^4.17.21",
"@types/jsonwebtoken": "^9.0.4",
"@types/mocha": "^10.0.9",
"@types/node": "^20.16.1",
"@types/uuid": "^9.0.8",
"botbuilder-core": "^4.22.1",
"eslint": "^8.57.1",
"express": "^4.21.1",
"jsonwebtoken": "^9.0.2",
"mocha": "10.8.2",
"nyc": "^15.1.0",
"rimraf": "5.0.10",
"shx": "^0.3.4",
"ts-mocha": "10.0.0",
"typescript": "~5.5.4"
},
"scripts": {
"build": "tsc -b",
"build:rollup": "npx api-extractor run --verbose --local",
"clean": "npx rimraf _ts3.4 lib tsconfig.tsbuildinfo node_modules",
"depcheck": "depcheck --config ../../.depcheckrc",
"lint": "eslint **/src/**/*.{j,t}s{,x} --fix --no-error-on-unmatched-pattern",
"test": "npx mocha -r ts-node/register src/**/*.spec.ts",
"test:debug": "ts-mocha src/**/*.spec.ts --inspect-brk",
"test:coverage": "nyc --reporter=html --reporter=text --reporter=text-summary npm test",
"test:compat": "npx api-extractor run --verbose",
"watch": "tsc -b --watch"
},
"files": [
"_ts3.4",
"lib"
]
}