-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
65 lines (65 loc) · 1.53 KB
/
Copy pathpackage.json
File metadata and controls
65 lines (65 loc) · 1.53 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
{
"name": "@hahnfeld/teams-adapter",
"version": "1.5.16",
"description": "Teams adapter plugin for OpenACP — streaming message composer, rate limiter, commands",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js"
}
},
"keywords": [
"openacp",
"openacp-plugin",
"teams",
"adapter",
"microsoft-teams"
],
"engines": {
"node": ">=20",
"openacp": ">=2026.0.0"
},
"scripts": {
"build": "tsc",
"dev": "tsc --watch",
"test": "vitest",
"prepublishOnly": "pnpm run build"
},
"repository": {
"type": "git",
"url": "git+https://github.com/hahnfeld/teams-adapter.git"
},
"homepage": "https://github.com/hahnfeld/teams-adapter",
"author": "Matt Hahnfeld",
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
},
"peerDependencies": {
"@openacp/cli": ">=2026.0.0",
"@openacp/plugin-sdk": ">=2026.0.0"
},
"dependencies": {
"@microsoft/agents-hosting": "^1.4.0",
"@microsoft/teams.api": "^2.0.0",
"@microsoft/teams.apps": "^2.0.0",
"@microsoft/teams.botbuilder": "^2.0.0",
"botbuilder": "^4.23.0",
"botframework-connector": "^4.23.0",
"nanoid": "^5.0.0"
},
"devDependencies": {
"@openacp/plugin-sdk": "^2026.0.0",
"@types/node": "^25.6.0",
"typescript": "^5.4.0",
"vitest": "^3.0.0"
},
"files": [
"dist"
],
"packageManager": "pnpm@10.5.0",
"license": "MIT"
}