{
  "name": "botframework-streaming",
  "author": "Microsoft Corp.",
  "description": "Streaming library for the Microsoft Bot Framework",
  "version": "4.23.3",
  "license": "MIT",
  "keywords": [
    "botbuilder",
    "botframework",
    "bots",
    "chatbots",
    "websockets",
    "streaming"
  ],
  "bugs": {
    "url": "https://github.com/microsoft/botbuilder-js/issues"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/microsoft/botbuilder-js.git"
  },
  "main": "lib/index.js",
  "browser": "lib/index-browser.js",
  "types": "lib/index.d.ts",
  "typesVersions": {
    "<3.9": {
      "*": [
        "_ts3.4/*"
      ]
    }
  },
  "dependencies": {
    "@types/ws": "^6.0.3",
    "uuid": "^10.0.0",
    "ws": "^7.5.10"
  },
  "devDependencies": {
    "@types/node": "^18.19.123",
    "chai": "^5.1.2"
  },
  "scripts": {
    "build": "npm-run-all -p build:lib build:browser",
    "build:browser": "npm-run-all build:browser:clean build:browser:run",
    "build:browser:clean": "rimraf --glob lib/index-browser.*",
    "build:browser:run": "tsup --config ../../tsup/browser.config.ts --define.entry src/index-browser.ts --define.outfile lib/index-browser.js --dts",
    "build:lib": "tsc -p tsconfig.json",
    "build:rollup": "yarn clean && yarn build && api-extractor run --verbose --local",
    "clean": "rimraf _ts3.4 lib vendors",
    "depcheck": "depcheck --config ../../.depcheckrc",
    "lint": "eslint .",
    "prebuild": "tsup ./node_modules/chai/*.js --format cjs --dts --out-dir vendors/chai --clean --sourcemap --target es2020 --external jiti --external @web/dev-server-rollup --external @rollup/plugin-commonjs",
    "postbuild": "downlevel-dts lib _ts3.4/lib --checksum",
    "test": "npm-run-all build test:mocha",
    "test:compat": "api-extractor run --verbose",
    "test:mocha": "nyc mocha tests"
  },
  "mocha": {
    "checkLeaks": true,
    "exit": true
  },
  "files": [
    "_ts3.4",
    "lib",
    "src",
    "vendors"
  ]
}