@skyway-sdk/core
Version:
The official Next Generation JavaScript SDK for SkyWay
69 lines (68 loc) • 3.23 kB
JSON
{
"name": "@skyway-sdk/core",
"version": "1.11.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": "zx bundle.mjs",
"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",
"doc": "npm run doc:html && npm 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": "npm run test-large",
"e2e:firefox": "karma start ./karma.all.js --single-run --browsers FirefoxHeadlessAutoAllowGUM",
"format": "eslint ./src --fix && eslint ./tests --fix",
"graph": "dependency-cruiser --include-only '^src' --output-type dot src | dot -T svg > docs/dependencygraph.svg",
"lint": "eslint ./src --fix && eslint ./tests --fix",
"pre:test": "cd ../../ && npm run build && cd packages/core",
"publish:npm": "npx can-npm-publish --verbose && npm run build && npm publish --access public",
"test-all": "npm-run-all -p test-large test-middle test-small",
"test-large": "karma start ./karma.large.js --single-run --browsers chrome_headless_with_fake_device",
"test-large:dev": "karma start ./karma.large.js --browsers chrome_with_fake_device",
"test-middle": "karma start ./karma.middle.js --single-run --browsers chrome_headless_with_fake_device",
"test-middle:dev": "karma start ./karma.middle.js --browsers chrome_with_fake_device",
"test-small": "jest && karma start ./karma.small.js --single-run --browsers chrome_headless_with_fake_device",
"test-small:dev": "karma start ./karma.small.js --browsers chrome_with_fake_device",
"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"
},
"dependencies": {
"@skyway-sdk/analytics-client": "^1.0.1",
"@skyway-sdk/rtc-api-client": "^1.8.0",
"@skyway-sdk/signaling-client": "^1.0.7",
"bowser": "^2.11.0",
"deepmerge": "^4.3.1",
"sdp-transform": "^2.14.2",
"ua-parser-js": "^1.0.35",
"uuid": "^9.0.0"
},
"devDependencies": {
"@types/sdp-transform": "^2.4.9",
"@types/ua-parser-js": "^0.7.39",
"@types/uuid": "^9.0.1"
},
"keywords": [
"webrtc",
"skyway",
"conferencing"
]
}