-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
42 lines (42 loc) · 1.45 KB
/
package.json
File metadata and controls
42 lines (42 loc) · 1.45 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
{
"name": "aime-demo",
"version": "1.0.0",
"description": "Sample Message Extension that leverages AI to create posts",
"author": "Microsoft",
"license": "MIT",
"main": "./lib/index.js",
"scripts": {
"build": "tsc --build && shx cp -r ./src/prompts ./lib/",
"clean": "rimraf node_modules lib tsconfig.tsbuildinfo",
"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 \"yarn start\"",
"dev:teamsfx": "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.7.4",
"botbuilder": "^4.23.3",
"dotenv": "^16.6.1",
"openai": "4.104.0",
"replace": "~1.2.0",
"restify": "~11.1.0"
},
"devDependencies": {
"@types/node": "^20.16.1",
"@types/restify": "^8.5.12",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"eslint": "^8.57.1",
"nodemon": "~3.0.1",
"prettier": "^3.5.3",
"rimraf": "^5.0.10",
"typescript": "~5.5.4",
"shx": "^0.4.0",
"ts-node": "^10.9.2"
}
}