{
  "name": "@skyway-sdk/rtc-api-client",
  "version": "2.2.0",
  "description": "The official Next Generation JavaScript SDK for SkyWay",
  "homepage": "https://skyway.ntt.com/",
  "repository": {
    "type": "git",
    "url": "https://github.com/skyway/js-sdk.git"
  },
  "license": "MIT",
  "author": "NTT DOCOMO BUSINESS, Inc.",
  "main": "dist/index.js",
  "module": "dist/index.mjs",
  "types": "dist/index.d.ts",
  "files": [
    "dist",
    "LICENSE"
  ],
  "dependencies": {
    "deepmerge": "^4.3.1",
    "uuid": "^9.0.0",
    "@skyway-sdk/rtc-rpc-api-client": "2.1.0",
    "@skyway-sdk/token": "2.1.0",
    "@skyway-sdk/common": "2.0.2"
  },
  "devDependencies": {
    "@types/uuid": "^9.0.1",
    "@skyway-sdk/model": "2.0.0"
  },
  "keywords": [
    "webrtc",
    "skyway",
    "conferencing"
  ],
  "scripts": {
    "build": "cp -r ../../bundler ./ && zx ./bundler/private.mjs && rm -rf ./bundler",
    "compile": "pnpm run compile:tsc && pnpm run compile:esbuild",
    "compile:esbuild": "esbuild src/index.ts --bundle --format=esm --target=es6 --outfile=dist/index.mjs",
    "compile:tsc": "rm -rf dist && tsc -p tsconfig.build.json",
    "e2e": "jest ./e2e --forceExit --coverage",
    "format": "eslint ./src --fix",
    "license": "zx ../../scripts/license.mjs @skyway-sdk/rtc-api-client",
    "lint": "eslint ./src --fix",
    "graph": "dependency-cruiser --include-only '^src' --output-type dot src | dot -T svg > docs/dependencygraph.svg",
    "publish:npm": "pnpm dlx can-npm-publish --verbose && pnpm run build && npm publish --access public",
    "test": "jest ./tests --forceExit --coverage",
    "test-all": "pnpm run test && pnpm run e2e",
    "type": "tsc --noEmit -p ./tsconfig.build.json",
    "watch": "npm-run-all --parallel watch:tsc watch:esbuild",
    "watch:esbuild": "esbuild src/index.ts --bundle --watch --format=esm --target=es6 --outfile=dist/index.mjs",
    "watch:tsc": "tsc -p tsconfig.build.json -w"
  }
}