UNPKG

msc-node

Version:

mediasoup client side Node.js library

97 lines (96 loc) 2.63 kB
{ "name": "msc-node", "version": "0.0.26", "description": "mediasoup client side Node.js library", "keywords": [ "webrtc", "ortc", "browser", "nodejs" ], "homepage": "https://mediasoup.org", "repository": { "type": "git", "url": "https://github.com/shinyoshiaki/mediasoup-client-node.git" }, "license": "ISC", "contributors": [ "shinyoshiaki <shinyoshiaki2012@gmail.com>", "Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)", "José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)" ], "main": "lib/index.js", "types": "lib/index.d.ts", "files": [ "npm-scripts.mjs", "lib" ], "scripts": { "coverage": "node npm-scripts.mjs coverage", "e2e": "cd example/client-node && npm run test", "install-deps": "node npm-scripts.mjs install-deps", "lint": "node npm-scripts.mjs lint", "prepare": "node npm-scripts.mjs prepare", "release": "node npm-scripts.mjs release && npm publish", "release:check": "node npm-scripts.mjs release:check", "server": "cd example/server && DEBUG=* npm run dev", "test": "node npm-scripts.mjs test", "typescript:build": "node npm-scripts.mjs typescript:build", "typescript:watch": "node npm-scripts.mjs typescript:watch" }, "jest": { "cacheDirectory": ".cache/jest", "coveragePathIgnorePatterns": [ "src/tests" ], "testEnvironment": "node", "testRegex": "src/tests/test.*\\.ts", "transform": { "^.*\\.ts$": [ "ts-jest", { "diagnostics": { "ignoreCodes": [ "TS151001" ] } } ] }, "verbose": true }, "dependencies": { "@types/debug": "^4.1.10", "awaitqueue": "^2.3.3", "bowser": "^2.11.0", "debug": "^4.3.4", "events": "^3.3.0", "fake-mediastreamtrack": "^1.2.0", "h264-profile-level-id": "^1.0.1", "queue-microtask": "^1.2.3", "sdp-transform": "^2.14.1", "supports-color": "^9.4.0", "ua-parser-js": "^1.0.36", "werift": "^0.18.17" }, "devDependencies": { "@types/events": "^3.0.2", "@types/jest": "^29.5.6", "@types/node": "^16.3.2", "@types/sdp-transform": "^2.4.8", "@types/ua-parser-js": "^0.7.38", "@typescript-eslint/eslint-plugin": "^6.8.0", "@typescript-eslint/parser": "^6.8.0", "eslint": "^8.52.0", "eslint-plugin-jest": "^27.4.3", "jest": "^29.7.0", "open-cli": "^7.2.0", "ts-jest": "^29.1.1", "ts-node": "^9.1.1", "ts-node-dev": "^1.1.6", "typescript": "^5.2.2" }, "engines": { "node": ">=16" } }