Files
VideoPlayer/package.json

30 lines
654 B
JSON

{
"name": "vp",
"version": "0.0.1",
"description": "VideoPlayer (vp) is a private project at db company to handle hls streams in a modular beautiful html5 video player.",
"keywords": [],
"repository": {
"type": "git",
"url": "VideoPlayer"
},
"license": "MIT",
"author": "db",
"type": "commonjs",
"main": "index.ts",
"scripts": {
"dev": "vite build --watch",
"build": "tsc",
"bundle": "vite build",
"test": "vitest",
"preview": "vite preview"
},
"devDependencies": {
"@types/node": "^25.6.0",
"typescript": "^6.0.3",
"vite": "^8.0.9"
},
"dependencies": {
"hls.js": "^1.6.16"
}
}