forked from pnp/copilot-pro-dev-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.6 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.6 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
{
"name": "TechPulse",
"version": "1.0.0",
"type": "module",
"msteams": {
"teamsAppId": null
},
"description": "Basic Custome Engine Agent with Microsoft 365 Agents SDK",
"engines": {
"node": "18 || 20 || 22"
},
"author": "Microsoft",
"license": "MIT",
"main": "./lib/src/index.js",
"scripts": {
"dev:teamsfx": "env-cmd --silent -f .localConfigs npm run dev",
"dev:teamsfx:playground": "env-cmd --silent -f .localConfigs.playground npm run dev",
"dev:teamsfx:launch-playground": "env-cmd --silent -f env/.env.playground teamsapptester start",
"dev": "nodemon --exec node --inspect=9239 --signal SIGINT --loader ts-node/esm ./src/index.ts",
"build": "tsc --build",
"start": "node ./lib/src/index.js",
"test": "echo \"Error: no test specified\" && exit 1",
"watch": "nodemon --exec \"npm run start\""
},
"repository": {
"type": "git",
"url": "https://github.com"
},
"dependencies": {
"@azure/identity": "^4.8.0",
"@azure/openai": "^2.0.0",
"@microsoft/agents-hosting": "^0.2.14",
"@modelcontextprotocol/sdk": "^1.0.0",
"express": "^5.0.1",
"openai": "^4.94.0",
"zod": "^3.23.0"
},
"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": "^5.5.4"
},
"ts-node": {
"esm": true,
"experimentalSpecifierResolution": "node"
}
}