-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
45 lines (45 loc) · 1.56 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
{
"name": "JARVIB",
"version": "1.0.0",
"description": "Just A Rather Very Intelligent Bot that can create dynamic 3D worlds.",
"author": "David Rousset",
"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/davrous/JARVIB.git"
},
"dependencies": {
"@azure/msal-node": "^2.6.4",
"@microsoft/teams-ai": "~1.1.0",
"@microsoft/teams-js": "^2.14.0",
"@microsoft/teamsfx": "^2.3.0",
"botbuilder": "^4.22.1",
"dotenv": "^16.4.2",
"express": "^4.18.2",
"replace": "~1.2.0",
"restify": "~11.1.0",
"rimraf": "^5.0.5",
"socket.io": "^4.7.2"
},
"devDependencies": {
"@types/dotenv": "6.1.1",
"@types/jsonwebtoken": "^9.0.2",
"@types/lodash": "^4.14.196",
"@types/node": "^20.11.19",
"@types/restify": "8.5.12",
"nodemon": "~1.19.4",
"shx": "^0.3.4",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
}
}