{
  "name": "@telnyx/video",
  "version": "1.0.2",
  "description": "Telnyx Video JS SDK",
  "keywords": [
    "telnyx",
    "webrtc",
    "video"
  ],
  "main": "lib/index.js",
  "module": "lib/index.mjs",
  "types": "lib/index.d.ts",
  "files": [
    "lib"
  ],
  "scripts": {
    "format": "prettier --write 'src/**/*.ts'",
    "test": "jest",
    "test:coverage": "jest --coverage",
    "test:watch": "jest --watch",
    "prepare": "npm run build:prod",
    "build:prod": "NODE_ENV=production VIDEO_PROXY_URL=wss://video.telnyx.com ./node_modules/.bin/concurrently \"npm:rollup:build\" \"npm:tsc:build\"",
    "build:dev": "NODE_ENV=development ./node_modules/.bin/concurrently \"npm:rollup:build\" \"npm:tsc:build\"",
    "watch:prod": "NODE_ENV=production VIDEO_PROXY_URL=wss://video.telnyx.com ./node_modules/.bin/concurrently \"npm:rollup:watch\" \"npm:tsc:watch\"",
    "watch:dev": "NODE_ENV=development ./node_modules/.bin/concurrently \"npm:rollup:watch\" \"npm:tsc:watch\"",
    "rollup:build": "rollup -c",
    "rollup:watch": "rollup -c --watch",
    "tsc:build": "tsc -p ./tsconfig.build.json --emitDeclarationOnly",
    "tsc:watch": "tsc -p ./tsconfig.build.json -w --emitDeclarationOnly",
    "doc:build": "typedoc src/index.ts",
    "doc:watch": "typedoc --watch src/index.ts",
    "docsify": "docsify serve ./docs",
    "release": "DEBUG=release-it:* release-it"
  },
  "engines": {
    "node": ">=14"
  },
  "author": "Telnyx <support@telnyx.com> (https://www.telnyx.com/)",
  "license": "MIT",
  "homepage": "https://telnyx.com",
  "devDependencies": {
    "@babel/core": "^7.13.14",
    "@babel/preset-env": "^7.13.12",
    "@babel/preset-typescript": "^7.13.0",
    "@release-it/bumper": "^2.0.0",
    "@rollup/plugin-alias": "^3.1.2",
    "@rollup/plugin-commonjs": "^17.1.0",
    "@rollup/plugin-inject": "^4.0.2",
    "@rollup/plugin-node-resolve": "^11.2.1",
    "@rollup/plugin-typescript": "^8.3.0",
    "@types/jest": "^26.0.20",
    "@types/sdp-transform": "^2.4.4",
    "@typescript-eslint/eslint-plugin": "^4.17.0",
    "@typescript-eslint/parser": "^4.17.0",
    "babel-jest": "^26.6.3",
    "concurrently": "^6.1.0",
    "dotenv": "^10.0.0",
    "eslint": "^7.21.0",
    "eslint-config-airbnb": "^18.2.1",
    "eslint-plugin-import": "^2.22.1",
    "jest": "^26.6.3",
    "jest-websocket-mock": "^2.2.1",
    "mock-socket": "^9.0.8",
    "prettier": "^2.2.1",
    "release-it": "^15.1.1",
    "rollup": "^2.59.0",
    "rollup-plugin-replace": "^2.2.0",
    "rollup-plugin-terser": "^7.0.2",
    "typedoc": "0.22.15",
    "typescript": "^4.4.4"
  },
  "dependencies": {
    "@types/uuid": "^8.3.0",
    "events": "^3.3.0",
    "immer": "^9.0.2",
    "js-logger": "^1.6.1",
    "nanoevents": "^5.1.13",
    "sdp-transform": "^2.14.1",
    "uuid": "^8.3.2",
    "window-or-global": "^1.0.1"
  },
  "publishConfig": {
    "access": "public",
    "@telnyx:registry": "https://registry.npmjs.org"
  },
  "release-it": {
    "npm": {
      "publish": false
    },
    "git": {
      "requireBranch": "main",
      "changelog": "git log $(git describe --tags --abbrev=0)..HEAD --pretty=format:'%s' | grep -i -E '^(bugfix|feat|fix|docs|refactor|chore)'",
      "commitMessage": "Release video ${version}",
      "tagAnnotation": "Release video ${version}",
      "tagName": "video/v${version}"
    },
    "github": {
      "release": true,
      "releaseName": "video@${version}",
      "releaseNotes": "git log $(git describe --tags --abbrev=0)..HEAD --pretty=format:'%s' | grep -i -E '^(bugfix|feat|fix|docs|refactor|chore)'"
    }
  }
}
