UNPKG

krtp

Version:

Node implementation of rtp protocol. RFC 3550

56 lines (55 loc) 1.44 kB
{ "name": "krtp", "version": "4.0.0", "description": "Node implementation of rtp protocol. RFC 3550", "main": "dist/index.js", "type": "module", "repository": { "type": "git", "url": "git+https://github.com/1995parham/krtp" }, "author": "Parham Alvani <parham.alvani@gmail.com>", "license": "GPL-3.0", "bugs": { "url": "https://github.com/1995parham/krtp/issues" }, "homepage": "https://github.com/1995parham/krtp#readme", "keywords": [ "rtp", "rtcp", "rtp-session", "rtp-packet", "rfc-3550" ], "scripts": { "prepublish": "npm run build", "build": "tsc -b", "test": "jest --coverage", "lint": "eslint 'lib/**/*.ts'" }, "devDependencies": { "@babel/core": "^7.28.0", "@babel/preset-env": "^7.28.0", "@babel/preset-typescript": "^7.27.1", "@eslint/js": "^9.33.0", "@jest/globals": "^30.0.5", "@types/jest": "^30.0.0", "@types/node": "^24.2.1", "@typescript-eslint/eslint-plugin": "^8.39.1", "@typescript-eslint/parser": "^8.39.1", "babel-jest": "^30.0.5", "eslint": "^9.33.0", "eslint-plugin-import": "^2.32.0", "eslint-plugin-node": "^11.1.0", "eslint-plugin-prettier": "^5.5.4", "eslint-plugin-promise": "^7.2.1", "globals": "^16.3.0", "jest": "^30.0.5", "typescript": "^5.9.2", "typescript-eslint": "^8.39.1" }, "dependencies": { "jiti": "^2.5.1", "rxjs": "^7.8.2" } }