-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
52 lines (52 loc) · 1.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
{
"name": "botlib",
"version": "5.0.0",
"description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)",
"main": "dist/index.js",
"types": "dist/index",
"homepage": "http://www.generalbots.ai",
"contributors": [
"Rodrigo Rodriguez <[email protected]>",
"João Antonio Ferreira <[email protected]>",
"Jorge Ramos <[email protected]>",
"PH <[email protected]>",
"Dário Vieira <[email protected]>"
],
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/GeneralBots/BotLib.git"
},
"scripts": {
"clean": "rm -rf node_modules/ dist/",
"build": "npm install && npm run build-lib",
"build-lib": "tsc"
},
"dependencies": {
"async": "3.2.6",
"botbuilder": "4.23.0",
"botbuilder-adapter-facebook": "1.0.12",
"botbuilder-ai": "4.23.0",
"botbuilder-azure": "4.23.0",
"botbuilder-dialogs": "4.23.0",
"botframework-connector": "4.23.0",
"chrono-node": "2.7.5",
"dotenv-extended": "2.9.0",
"iconv-lite": "0.6.3",
"ms": "2.1.3",
"pragmatismo-io-framework": "1.1.1",
"reflect-metadata": "0.2.2",
"sequelize": "6.37.3",
"sequelize-cli": "6.6.2",
"sequelize-typescript": "2.1.6",
"underscore": "1.13.7",
"winston": "3.14.2"
},
"devDependencies": {
"@types/sequelize": "4.28.20",
"@types/winston": "2.4.4",
"ts-node": "10.9.2",
"typedoc": "0.26.6",
"typescript": "5.5.4"
}
}