UNPKG

mpegts-stream

Version:

Multiplex AAC audio samples and H264/AVC video samples into an MPEG2TS stream ready for transport.

59 lines (58 loc) 1.28 kB
{ "type": "module", "name": "mpegts-stream", "version": "0.0.1-alpha3", "description": "Multiplex AAC audio samples and H264/AVC video samples into an MPEG2TS stream ready for transport.", "main": "./dist/index.js", "types": "./dist/types/index.d.ts", "directories": { "test": "tests" }, "scripts": { "test": "node ./tests/index.js", "build": "npm run build:source && npm run build:types", "build:source": "tsup", "build:types": "tsc", "tagging": "node ./tagging/index.js" }, "repository": { "type": "git", "url": "git+https://github.com/tzuleger/mpegts.git" }, "keywords": [ "mpegts", "aac", "avc", "h264", "live-stream", "stream", "video", "audio", "node" ], "author": "Travis R. Zuleger", "license": "MIT", "bugs": { "url": "https://github.com/tzuleger/mpegts/issues" }, "homepage": "https://github.com/tzuleger/mpegts#readme", "devDependencies": { "@types/node": "^20.14.9", "tsc": "^2.0.4", "tsup": "^8.1.0", "typescript": "^5.5.3" }, "exports": { ".": { "import": "./dist/index.js", "types": "./dist/types/index.js" } }, "typesVersions": { "*": { ".": [ "./dist/types/muxer.d.ts" ] } } }