UNPKG

m3u8parse

Version:

Structural parsing of Apple HTTP Live Streaming .m3u8 format

59 lines (58 loc) 1.49 kB
{ "name": "m3u8parse", "version": "5.0.1", "description": "Structural parsing of Apple HTTP Live Streaming .m3u8 format", "main": "lib/index.js", "types": "lib/index.d.ts", "type": "module", "scripts": { "clean": "tsc -b src test --clean; rm -Rf ./coverage", "postpack": "npm run clean", "prepack": "npm run clean && tsc -b src --force", "test": "tsc -b test && c8 --check-coverage lab", "test-cov-html": "tsc -b test && c8 -r html lab" }, "keywords": [ "hls", "playlist", "video", "audio" ], "author": "Gil Pedersen <gpdev@gpost.dk>", "license": "BSD-2-Clause", "engines": { "node": ">=18.12.0" }, "exports": { ".": { "node": { "types": "./lib/index.node.d.ts", "default": "./lib/index.node.js" }, "default": "./lib/index.js" }, "./types/attrs": { "types": "./lib/attr-types.d.ts" }, "./attrlist": "./lib/attrlist.js", "./playlist": "./lib/playlist.js" }, "devDependencies": { "@hapi/code": "^9.0.1", "@hapi/eslint-plugin": "^7.0.0", "@hapi/lab": "^26.0.0", "@types/node": "^18.14.0", "@typescript-eslint/eslint-plugin": "^8.18.1", "@typescript-eslint/parser": "^8.18.1", "c8": "^10.1.3", "m3u8parse": "file:.", "typescript": "~5.7.2" }, "repository": { "type": "git", "url": "git://github.com/kanongil/m3u8parse.js.git" }, "bugs": { "url": "https://github.com/kanongil/m3u8parse.js/issues" } }