rtp.js
Version:
RTP stack for Node.js and browser written in TypeScript
86 lines (85 loc) • 2.22 kB
JSON
{
"name": "rtp.js",
"version": "0.15.6",
"description": "RTP stack for Node.js and browser written in TypeScript",
"contributors": [
"Iñaki Baz Castillo <ibc@aliax.net> (https://inakibaz.me)",
"José Luis Millán <jmillan@aliax.net> (https://github.com/jmillan)"
],
"homepage": "https://github.com/versatica/rtp.js",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/versatica/rtp.js.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"exports": {
".": {
"typedoc": "./src/index.ts",
"types": "./lib/index.d.ts",
"default": "./lib/index.js"
},
"./packets": {
"typedoc": "./src/packets/public.ts",
"types": "./lib/packets/public.d.ts",
"default": "./lib/packets/public.js"
},
"./utils": {
"typedoc": "./src/utils/public.ts",
"types": "./lib/utils/public.d.ts",
"default": "./lib/utils/public.js"
}
},
"files": [
"LICENSE",
"README.md",
"npm-scripts.mjs",
"lib"
],
"keywords": [
"rtp",
"rtcp",
"webrtc",
"nodejs"
],
"engines": {
"node": ">=20"
},
"scripts": {
"prepare": "node npm-scripts.mjs prepare",
"typescript:build": "node npm-scripts.mjs typescript:build",
"typescript:watch": "node npm-scripts.mjs typescript:watch",
"lint": "node npm-scripts.mjs lint",
"format": "node npm-scripts.mjs format",
"test": "node npm-scripts.mjs test",
"coverage": "node npm-scripts.mjs coverage",
"release:check": "node npm-scripts.mjs release:check",
"release": "node npm-scripts.mjs release",
"docs": "node npm-scripts.mjs docs",
"docs:watch": "node npm-scripts.mjs docs:watch",
"docs:check": "node npm-scripts.mjs docs:check"
},
"dependencies": {
"@types/node": "^24.10.0",
"debug": "^4.4.3",
"supports-color": "^10.2.2"
},
"devDependencies": {
"@eslint/js": "^9.39.1",
"@types/debug": "^4.1.12",
"@types/jest": "^30.0.0",
"eslint": "^9.39.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jest": "^29.0.1",
"eslint-plugin-prettier": "^5.5.4",
"globals": "^16.5.0",
"jest": "^30.2.0",
"open-cli": "^8.0.0",
"prettier": "^3.6.2",
"ts-jest": "^29.4.5",
"typedoc": "^0.28.14",
"typescript": "~5.9.3",
"typescript-eslint": "^8.46.3"
}
}