botlib/package.json

52 lines
1.5 KiB
JSON
Raw Normal View History

2018-04-20 23:20:17 -03:00
{
"name": "botlib",
2024-09-03 11:20:34 -03:00
"version": "5.0.0",
"description": "General Bot base library for building Node.js TypeScript Apps packages (.gbapp) and Libray packages (.gblib)",
2018-12-01 16:21:08 -02:00
"main": "dist/index.js",
"types": "dist/index",
"homepage": "http://www.generalbots.ai",
2018-05-12 11:16:10 -03:00
"contributors": [
"Rodrigo Rodriguez <me@rodrigorodriguez.com>",
2019-11-13 21:05:18 -03:00
"João Antonio Ferreira <joao.parana@gmail.com>",
"Jorge Ramos <jramos@pobox.com>",
"PH <ph.an@outlook.com>",
"Dário Vieira <dario.junior3@gmail.com>"
2018-05-12 11:16:10 -03:00
],
2018-05-29 05:19:12 -03:00
"license": "AGPL-3.0",
"repository": {
"type": "git",
"url": "https://github.com/GeneralBots/BotLib.git"
},
2019-12-30 16:58:59 -03:00
"scripts": {
"clean": "rm -rf node_modules/ dist/",
"build": "npm install && npm run build-lib",
"build-lib": "tsc"
},
2018-04-20 23:20:17 -03:00
"dependencies": {
2024-09-03 11:20:34 -03:00
"async": "3.2.6",
"botbuilder": "4.23.0",
"botbuilder-adapter-facebook": "1.0.12",
2024-09-03 11:20:34 -03:00
"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",
2020-11-22 11:23:07 -03:00
"dotenv-extended": "2.9.0",
2021-06-12 16:14:20 -03:00
"iconv-lite": "0.6.3",
"ms": "2.1.3",
2024-09-03 11:20:34 -03:00
"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"
2018-04-20 23:20:17 -03:00
},
"devDependencies": {
2024-09-03 11:20:34 -03:00
"@types/sequelize": "4.28.20",
2018-09-27 12:15:45 -03:00
"@types/winston": "2.4.4",
2024-09-03 11:20:34 -03:00
"ts-node": "10.9.2",
"typedoc": "0.26.6",
"typescript": "5.5.4"
2018-04-20 23:20:17 -03:00
}
2022-09-24 12:52:30 -03:00
}