UNPKG

@skyway-sdk/sfu-bot

Version:

The official Next Generation JavaScript SDK for SkyWay

61 lines 2.53 kB
{ "name": "@skyway-sdk/sfu-bot", "version": "2.0.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": { "mediasoup-client": "^3.18.3", "lodash": "4.17.21", "@skyway-sdk/common": "2.0.2", "@skyway-sdk/core": "2.2.1", "@skyway-sdk/sfu-api-client": "2.0.2" }, "keywords": [ "webrtc", "skyway", "conferencing", "sfu" ], "devDependencies": { "@types/lodash": "4.17.16", "@skyway-sdk/model": "2.0.0", "@skyway-sdk/token": "2.0.2" }, "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", "e2e:dev": "pnpm run test:dev", "format": "eslint ./src --fix", "license": "zx ../../scripts/license.mjs @skyway-sdk/sfu-bot", "lint": "eslint ./src --fix", "graph": "dependency-cruiser --include-only '^src' --output-type dot src | dot -T svg > docs/dependencygraph.svg", "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": "jest && vitest --config vitest.config.ts run ./tests", "test:dev": "vitest --config vitest.config.ts --browser.headless=false run ./tests", "type": "npm-run-all --parallel type:main", "type:main": "tsc --noEmit -p ./tsconfig.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" } }