Initial commit: Video player with HLS support

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
2025-10-02 01:52:03 -06:00
commit 1743d472d2
29 changed files with 14074 additions and 0 deletions

23
package.json Normal file
View File

@@ -0,0 +1,23 @@
{
"name": "video-player",
"version": "1.0.0",
"private": true,
"type": "module",
"scripts": {
"dev": "nuxt dev",
"build": "nuxt build",
"generate": "nuxt generate",
"preview": "nuxt preview",
"start": "npm run build && ./start.sh",
"stop": "./stop.sh",
"tunnel": "./cloudflared tunnel run video-player"
},
"dependencies": {
"hls.js": "^1.6.13",
"nuxt": "^3.13.0",
"vue": "^3.4.0"
},
"devDependencies": {
"@nuxt/devtools": "latest"
}
}