-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
35 lines (35 loc) · 1.13 KB
/
Copy pathpackage.json
File metadata and controls
35 lines (35 loc) · 1.13 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
{
"name": "npbot",
"version": "1.0.0",
"msteams": {
"teamsAppId": null
},
"description": "Near Partner AI Assistant with Microsoft 365 integration",
"engines": {
"node": "18 || 20 || 22"
},
"author": "Microsoft",
"license": "MIT",
"main": "index.js",
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev",
"dev:teamsfx:testtool": "env-cmd --silent -f .localConfigs.playground npm run dev",
"dev:teamsfx:launch-testtool": "env-cmd --silent -f env/.env.playground teamsapptester start",
"dev": "nodemon --inspect=9239 --signal SIGINT ./index.js",
"start": "node ./index.js",
"watch": "nodemon ./index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"dependencies": {
"@azure/msal-node": "^3.7.2",
"@microsoft/agents-hosting": "^0.2.14",
"@microsoft/microsoft-graph-client": "^3.0.7",
"dotenv": "^17.2.1",
"express": "^5.0.1",
"node-fetch": "^3.3.2"
},
"devDependencies": {
"env-cmd": "^10.1.0",
"nodemon": "^3.1.7"
}
}