-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
40 lines (40 loc) · 1.31 KB
/
package.json
File metadata and controls
40 lines (40 loc) · 1.31 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
{
"name": "difylanggraphteamsbot",
"version": "1.0.0",
"description": "Microsoft Teams Toolkit hello world Bot sample",
"engines": {
"node": "18 || 20 || 22"
},
"author": "Microsoft",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"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 ./index.ts",
"build": "tsc --build",
"start": "node ./lib/index.js",
"watch": "nodemon --exec \"npm run start\"",
"test": "echo \"Error: no test specified\" && exit 1"
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@langchain/langgraph-sdk": "^0.0.70",
"botbuilder": "^4.23.1",
"dify-client": "^2.3.2",
"express": "^5.0.1"
},
"devDependencies": {
"@types/express": "^5.0.0",
"@types/node": "^18.0.0",
"env-cmd": "^10.1.0",
"nodemon": "^3.1.7",
"shx": "^0.3.3",
"ts-node": "^10.4.0",
"typescript": "^4.4.4"
}
}