botbuilder-dialogs
Version:
A dialog stack based conversation manager for Microsoft BotBuilder.
68 lines • 2.48 kB
JSON
{
"name": "botbuilder-dialogs",
"author": "Microsoft Corp.",
"description": "A dialog stack based conversation manager for Microsoft BotBuilder.",
"version": "4.23.3",
"license": "MIT",
"keywords": [
"botbuilder",
"botframework",
"bots",
"chatbots"
],
"bugs": {
"url": "https://github.com/Microsoft/botbuilder-js/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Microsoft/botbuilder-js.git"
},
"main": "./lib/index.js",
"types": "./lib/index.d.ts",
"typesVersions": {
"<3.9": {
"*": [
"_ts3.4/*"
]
}
},
"dependencies": {
"@microsoft/recognizers-text-choice": "1.1.4",
"@microsoft/recognizers-text-date-time": "1.1.4",
"@microsoft/recognizers-text-number": "1.3.1",
"@microsoft/recognizers-text-suite": "1.1.4",
"botbuilder-core": "4.23.3",
"botbuilder-dialogs-adaptive-runtime-core": "4.23.3-preview",
"botframework-connector": "4.23.3",
"globalize": "^1.7.0",
"lodash": "^4.17.21",
"uuid": "^10.0.0",
"zod": "^3.23.8"
},
"devDependencies": {
"@types/globalize": "^1.5.5",
"line-reader": "^0.4.0"
},
"scripts": {
"build": "tsc -b",
"build-docs": "typedoc --theme markdown --entryPoint botbuilder-dialogs --excludePrivate --includeDeclarations --ignoreCompilerErrors --module amd --out ..\\..\\doc\\botbuilder-dialogs .\\lib\\index.d.ts --hideGenerator --name \"Bot Builder SDK - Dialogs\" --readme none",
"build:rollup": "yarn clean && yarn build && api-extractor run --verbose --local",
"clean": "rimraf _ts3.4 lib tsconfig.tsbuildinfo",
"depcheck": "depcheck --config ../../.depcheckrc",
"lint": "eslint .",
"postbuild": "downlevel-dts lib _ts3.4/lib --checksum",
"test": "npm-run-all build test:mocha",
"test:mocha": "nyc mocha --recursive --require source-map-support/register tests",
"test:compat": "api-extractor run --verbose",
"postinstall": "npm run text-suite && npm run date-time && npm run number-with-unit",
"text-suite": "npx rimraf ../@microsoft/recognizers-text-suite/node_modules/@microsoft/recognizers-text-number",
"date-time": "npx rimraf ../@microsoft/recognizers-text-date-time/node_modules/@microsoft/recognizers-text-number",
"number-with-unit": "npx rimraf ../@microsoft/recognizers-text-number-with-unit/node_modules/@microsoft/recognizers-text-number"
},
"files": [
"_ts3.4",
"lib",
"src",
"vendor"
]
}