{
  "name": "@skyway-sdk/core",
  "version": "2.4.3",
  "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": {
    "bowser": "^2.11.0",
    "deepmerge": "^4.3.1",
    "lodash": "4.18.1",
    "sdp-transform": "^2.14.2",
    "ua-parser-js": "^1.0.35",
    "uuid": "^9.0.0",
    "@skyway-sdk/analytics-client": "2.0.1",
    "@skyway-sdk/common": "2.0.3",
    "@skyway-sdk/rtc-api-client": "2.2.1",
    "@skyway-sdk/signaling-client": "2.0.0",
    "@skyway-sdk/token": "2.1.1"
  },
  "devDependencies": {
    "@types/lodash": "4.17.23",
    "@types/sdp-transform": "^2.4.9",
    "@types/ua-parser-js": "^0.7.39",
    "@types/uuid": "^9.0.1",
    "@skyway-sdk/model": "2.0.0"
  },
  "keywords": [
    "webrtc",
    "skyway",
    "conferencing"
  ],
  "scripts": {
    "build": "zx bundle.mjs",
    "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",
    "doc": "pnpm run doc:html && pnpm run doc:md",
    "doc:html": "rm -rf docs/html && typedoc --excludePrivate --disableSources --excludeInternal --tsconfig ./tsconfig.build.json --out docs/html ./src/index.ts ",
    "doc:md": "rm -rf docs/md && typedoc --excludePrivate --disableSources --excludeInternal --tsconfig ./tsconfig.build.json --out docs/md --plugin typedoc-plugin-markdown ./src/index.ts ",
    "e2e": "pnpm run test-large",
    "format": "eslint ./src --fix && eslint ./tests --fix",
    "graph": "dependency-cruiser --include-only '^src' --output-type dot src | dot -T svg > docs/dependencygraph.svg",
    "license": "zx ../../scripts/license.mjs @skyway-sdk/core",
    "lint": "eslint ./src --fix && eslint ./tests --fix",
    "pre:test": "cd ../../ && pnpm run build && cd packages/core",
    "publish:npm": "pnpm dlx can-npm-publish --verbose && pnpm run build && npm publish --access public",
    "test-all": "npm-run-all -p test-large test-middle test-small",
    "test-large": "vitest --config vitest.large.ts run ./tests/large",
    "test-large:dev": "vitest --config vitest.large.ts --browser.headless=false run ./tests/large",
    "test-middle": "vitest --config vitest.middle.ts run ./tests/middle",
    "test-middle:dev": "vitest --config vitest.middle.ts --browser.headless=false run ./tests/middle",
    "test-small": "vitest --config vitest.small.ts run ./tests/small",
    "test-small:dev": "vitest --config vitest.small.ts --browser.headless=false run ./tests/small",
    "type": "npm-run-all --parallel type:main",
    "type:main": "tsc --noEmit -p ./tsconfig.json",
    "type:prod": "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"
  }
}