UNPKG

@skyway-sdk/analytics-client

Version:

The official Next Generation JavaScript SDK for SkyWay

58 lines 2.06 kB
{ "name": "@skyway-sdk/analytics-client", "version": "1.1.1", "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": { "isomorphic-ws": "^4.0.1", "uuid": "^9.0.0", "ws": "^8.17.1" }, "devDependencies": { "@types/jest": "^27.0.0", "@types/node": "^18.12.0", "@types/uuid": "^9.0.1", "@types/ws": "^8.5.10", "jest": "^27.0.6", "jsonc-parser": "^3.3.1", "@skyway-sdk/model": "1.0.3", "@skyway-sdk/common": "1.5.0" }, "keywords": [ "webrtc", "skyway", "conferencing", "getstats" ], "scripts": { "build": "cp -r ../../bundler ./ && zx ./bundler/private.mjs && rm -rf ./bundler", "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", "fix": "pnpm run format && pnpm run lint", "format": "prettier --write src __tests__", "graph": "dependency-cruiser --include-only '^src' --output-type dot src | dot -T svg > docs/dependencygraph.svg", "license": "zx ../../scripts/license.mjs @skyway-sdk/analytics-client", "lint": "eslint --fix src __tests__", "publish:npm": "pnpm dlx can-npm-publish --verbose && pnpm run build && npm publish --access public", "test": "jest --silent --forceExit", "test:console": "jest --forceExit", "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" } }