{
  "name": "media-stream-player",
  "version": "6.2.1",
  "description": "Player built on top of media-stream-library",
  "license": "MIT",
  "main": "dist/esm/index.js",
  "types": "dist/esm/index.d.ts",
  "scripts": {
    "lint": "yarn lint:ts && yarn prettier:check",
    "lint:fix": "yarn lint:ts --fix && yarn reformat",
    "lint:ts": "eslint --ext .ts,.tsx . --cache",
    "lint:css": "stylelint \"./**/*.tsx\"",
    "prettier:check": "prettier --check 'lib/**/*.{js,ts,jsx,tsx}'",
    "prettier:fix": "prettier --write 'lib/**/*.{js,ts,jsx,tsx}' --fix --loglevel silent",
    "test": "jest --coverage --passWithNoTests",
    "dev:esm": "yarn tsc --watch",
    "dev:example": "webpack serve --config webpack.example.js --env camera=$MSP_CAMERA",
    "dev": "yarn build:esm && concurrently \"yarn dev:esm\" \"yarn dev:example\"",
    "build:esm": "yarn tsc",
    "build:bundle": "webpack --config webpack.config.js && sbin/copyMinified.sh",
    "build:bundle-legacy": "webpack --config webpack.legacy.config.js",
    "build": "yarn build:esm && yarn build:bundle && yarn build:bundle-legacy",
    "release": "sbin/release.py",
    "commitlint": "sbin/commitlint.py"
  },
  "repository": {
    "type": "git",
    "url": "https://github.com/AxisCommunications/media-stream-player-js"
  },
  "keywords": [
    "video",
    "live",
    "streaming",
    "rtsp",
    "ip",
    "camera"
  ],
  "dependencies": {
    "@juggle/resize-observer": "3.3.1",
    "debug": "4.3.2",
    "react-hooks-shareable": "1.41.0"
  },
  "peerDependencies": {
    "luxon": "^1.25.0",
    "media-stream-library": "^10.1.0",
    "react": "^17.0.1",
    "react-dom": "^17.0.1",
    "styled-components": "^5.2.0"
  },
  "devDependencies": {
    "@babel/cli": "^7.15.7",
    "@babel/core": "^7.15.8",
    "@babel/plugin-proposal-class-properties": "7.14.5",
    "@babel/plugin-proposal-object-rest-spread": "7.15.6",
    "@babel/preset-env": "^7.15.8",
    "@babel/preset-react": "7.14.5",
    "@babel/preset-typescript": "7.15.0",
    "@types/debug": "4.1.7",
    "@types/jest": "27.0.1",
    "@types/luxon": "2.0.4",
    "@types/react": "17.0.20",
    "@types/react-dom": "17.0.9",
    "@types/styled-components": "5.1.14",
    "@typescript-eslint/eslint-plugin": "^5.1.0",
    "@typescript-eslint/parser": "^5.1.0",
    "babel-loader": "^8.2.3",
    "concurrently": "6.2.1",
    "core-js": "3.17.3",
    "eslint": "7.32.0",
    "eslint-config-typescript-shareable": "1.3.0",
    "eslint-plugin-functional": "3.7.0",
    "eslint-plugin-import": "2.24.2",
    "eslint-plugin-node": "11.1.0",
    "eslint-plugin-react": "7.25.1",
    "eslint-plugin-react-hooks": "4.2.0",
    "file-loader": "6.2.0",
    "html-webpack-plugin": "5.3.2",
    "jest": "^27.3.1",
    "luxon": "2.0.2",
    "media-stream-library": "10.1.1",
    "prettier": "2.4.0",
    "react": "17.0.2",
    "react-dom": "17.0.2",
    "react-is": "17.0.2",
    "semver": "7.3.5",
    "style-loader": "3.2.1",
    "styled-components": "5.3.1",
    "stylelint": "13.13.1",
    "ts-jest": "27.0.5",
    "typescript": "4.4.3",
    "webpack": "5.52.1",
    "webpack-cli": "4.8.0",
    "webpack-dev-server": "4.2.1"
  },
  "jest": {
    "testRegex": "(/__tests__/.*|(\\.|/)test)\\.ts$",
    "transform": {
      "^.+\\.tsx?$": "ts-jest"
    },
    "moduleFileExtensions": [
      "ts",
      "tsx",
      "js",
      "jsx",
      "json",
      "node"
    ]
  },
  "packageManager": "yarn@3.0.2"
}