forked from microsoft/teams-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.81 KB
/
package.json
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
{
"name": "teamschef-demo",
"version": "1.0.0",
"description": "Sample bot that thinks it's a Chef to help you cook Teams apps",
"author": "Microsoft",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"build": "tsc --build",
"clean": "rimraf node_modules lib",
"lint": "eslint **/src/**/*.{j,t}s{,x} --fix --no-error-on-unmatched-pattern",
"start": "tsc --build && node ./lib/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --watch ./src -e ts --exec \"npm start\"",
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev",
"dev:teamsfx:testtool": "env-cmd --silent -f .localConfigs.testTool npm run dev",
"dev:teamsfx:launch-testtool": "env-cmd --silent -f env/.env.testtool teamsapptester start",
"dev": "nodemon --exec node --inspect=9239 --signal SIGINT -r ts-node/register ./src/index.ts"
},
"repository": {
"type": "git",
"url": "https://github.com/microsoft/teams-ai"
},
"dependencies": {
"@microsoft/teams-ai": "~1.4.0",
"@microsoft/teams-js": "^2.28.0",
"@microsoft/teamsfx": "^2.3.2",
"botbuilder": "^4.23.0",
"dotenv": "^16.4.5",
"openai": "4.41.1",
"replace": "~1.2.0",
"restify": "~11.1.0",
"vectra": "^0.9.0"
},
"devDependencies": {
"@types/jsonwebtoken": "^9.0.6",
"@types/node": "^20.16.1",
"@types/restify": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"env-cmd": "^10.1.0",
"eslint": "^8.57.0",
"nodemon": "~3.0.1",
"prettier": "^3.3.3",
"rimraf": "^5.0.10",
"ts-node": "^10.9.2",
"typescript": "^5.5.4"
}
}