UNPKG

@skyway-sdk/rtc-api-client

Version:

The official Next Generation JavaScript SDK for SkyWay

51 lines (50 loc) 1.8 kB
{ "name": "@skyway-sdk/rtc-api-client", "version": "1.8.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 Communications Corp.", "main": "dist/index.js", "module": "dist/index.mjs", "types": "dist/index.d.ts", "files": [ "dist", "LICENSE" ], "scripts": { "build": "cp -r ../../bundler ./ && zx ./bundler/private.mjs && rm -rf ./bundler", "compile": "npm run compile:tsc && npm 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", "lint": "eslint ./src --fix", "graph": "dependency-cruiser --include-only '^src' --output-type dot src | dot -T svg > docs/dependencygraph.svg", "publish:npm": "npx can-npm-publish --verbose && npm run build && npm publish --access public", "test": "jest ./tests --forceExit --coverage", "test-all": "npm run test && npm 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" }, "dependencies": { "@skyway-sdk/rtc-rpc-api-client": "^1.8.0", "@skyway-sdk/token": "^1.7.0", "deepmerge": "^4.3.1", "uuid": "^9.0.0" }, "devDependencies": { "@types/uuid": "^9.0.1" }, "keywords": [ "webrtc", "skyway", "conferencing" ] }