{ "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": { "typescript": "^5.3.0" }, "publishConfig": { "access": "public" } }