mirror of
https://github.com/zoriya/v10.git
synced 2026-08-06 14:18:10 +00:00
43 lines
882 B
JSON
43 lines
882 B
JSON
{
|
|
"name": "@vjs-10/playback-engine",
|
|
"version": "0.1.0",
|
|
"description": "An abstraction for building or abstracting media source management (provides a common contract for things like hls.js or dash.js).",
|
|
"main": "dist/index.js",
|
|
"module": "dist/index.mjs",
|
|
"types": "dist/index.d.ts",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.mjs",
|
|
"require": "./dist/index.js"
|
|
}
|
|
},
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"scripts": {
|
|
"build": "tsup",
|
|
"test": "echo \"No tests yet\"",
|
|
"clean": "rm -rf dist"
|
|
},
|
|
"keywords": [
|
|
"media",
|
|
"playback",
|
|
"engine",
|
|
"hls",
|
|
"dash",
|
|
"streaming"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"dependencies": {
|
|
"hls.js": "^1.6.7"
|
|
},
|
|
"devDependencies": {
|
|
"tsup": "^8.5.0",
|
|
"typescript": "^5.9.2"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public"
|
|
}
|
|
}
|