UNPKG

@skyway-sdk/core

Version:

The official Next Generation JavaScript SDK for SkyWay

73 lines 3.28 kB
{ "name": "@skyway-sdk/core", "version": "1.15.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": { "bowser": "^2.11.0", "deepmerge": "^4.3.1", "lodash": "4.17.21", "sdp-transform": "^2.14.2", "ua-parser-js": "^1.0.35", "uuid": "^9.0.0", "@skyway-sdk/analytics-client": "1.1.1", "@skyway-sdk/common": "1.5.0", "@skyway-sdk/rtc-api-client": "1.8.3", "@skyway-sdk/signaling-client": "1.0.9", "@skyway-sdk/token": "1.7.3" }, "devDependencies": { "@types/lodash": "4.17.16", "@types/sdp-transform": "^2.4.9", "@types/ua-parser-js": "^0.7.39", "@types/uuid": "^9.0.1", "@skyway-sdk/model": "1.0.3" }, "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" } }