forked from microsoft/teams-ai
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 2.49 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
{
"private": true,
"name": "teams-ai",
"version": "1.0.0",
"workspaces": [
"./packages/*",
"./samples/**/*"
],
"scripts": {
"build": "wsrun -e -m -t build",
"build-docs": "wsrun -e -m build-docs",
"clean": "wsrun -m clean && npx rimraf node_modules",
"depcheck": "wsrun -m -l depcheck",
"dev:link": "wsrun --if is-not-private --bin=yarn link",
"dev:unlink": "wsrun --if is-not-private --bin=yarn unlink",
"lint": "wsrun -m -l lint",
"package": "wsrun -e -t -l --if is-not-private --bin yarn pack",
"test": "yarn tsc -b packages/teams-ai && npx mocha -r ts-node/register packages/teams-ai/src/**/*.spec.ts",
"test:mocha": "nyc --silent mocha --require ts-node/register \"./packages/teams-ai/src/*.spec.ts\" --exit --check-leaks",
"test:nyc:report": "npx rimraf coverage && yarn test:mocha && nyc report"
},
"dependencies": {
"botbuilder": "^4.23.1",
"openai": "4.68.2"
},
"devDependencies": {
"@azure/logger": "^1.1.4",
"@azure/ms-rest-js": "2.7.0",
"@microsoft/api-extractor": "^7.48.1",
"@standardlabs/is-private": "^1.0.1",
"@types/jsonwebtoken": "9.0.4",
"@types/lodash": "^4.17.13",
"@types/mocha": "^10.0.9",
"@types/node": "^20.16.1",
"@types/sinon": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"applicationinsights": "^2.9.6",
"chai": "^4.5.0",
"depcheck": "^1.4.7",
"eslint": "^8.57.1",
"eslint-config-prettier": "^8.10.0",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-mocha": "^10.5.0",
"eslint-plugin-only-warn": "^1.1.0",
"eslint-plugin-prettier": "^5.2.1",
"exorcist": "^2.0.0",
"express": "^4.21.1",
"mocha": "^10.7.3",
"mocha-junit-reporter": "^2.0.0",
"mocha": "^10.8.2",
"ms-rest-azure": "^3.0.2",
"npm-run-all": "^4.1.5",
"nyc": "^15.1.0",
"prettier": "^3.3.3",
"proxyquire": "^2.1.3",
"read-text-file": "^1.1.0",
"replace-in-file": "^4.1.0",
"rimraf": "^5.0.10",
"shx": "^0.3.4",
"sinon": "^19.0.2",
"source-map-support": "^0.5.19",
"sponge": "^0.1.0",
"tinyify": "^4.0.0",
"ts-node": "^10.9.2",
"typescript": "5.5.4",
"wsrun": "^5.2.4"
}
}