@glitchlab/vue-video-player 1.0.0 → 1.0.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +7 -5
  2. package/package.json +4 -5
package/README.md CHANGED
@@ -7,6 +7,8 @@ A lightweight, HLS-capable Vue 3 video player with a polished overlay UI, device
7
7
  [![license: MIT](https://img.shields.io/badge/license-MIT-green.svg)](./LICENSE)
8
8
  [![types: TypeScript](https://img.shields.io/badge/types-TypeScript-blue.svg)](#typescript)
9
9
 
10
+ **Live demo →** <https://video-player-playgraound.vercel.app/> — drop in a video file or paste any URL (HLS `.m3u8` supported). The deployed playground uses the React build, but the same UX, props, and styles ship with this Vue package.
11
+
10
12
  ---
11
13
 
12
14
  ## Why this player
@@ -277,14 +279,14 @@ The component is SSR-safe. Server output renders the static frame; HLS attaches
277
279
  ## Contributing
278
280
 
279
281
  ```bash
280
- git clone https://github.com/im-fahad/react-video-player.git
281
- cd react-video-player
282
+ git clone https://github.com/im-fahad/vue-video-player.git
283
+ cd vue-video-player
282
284
  pnpm install
283
- pnpm --filter @glitchlab/vue-video-player test
284
- pnpm dev:vue # opens the local Vue playground at http://localhost:5174
285
+ pnpm test
286
+ pnpm build
285
287
  ```
286
288
 
287
- Issues and PRs welcome at <https://github.com/im-fahad/react-video-player/issues>.
289
+ Issues and PRs welcome at <https://github.com/im-fahad/vue-video-player/issues>.
288
290
 
289
291
  ---
290
292
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glitchlab/vue-video-player",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Vue 3 / Nuxt 3 video player with HLS support, device-mode toggle, hover-to-play, and zero global CSS side-effects.",
5
5
  "license": "MIT",
6
6
  "author": "im-fahad",
@@ -58,12 +58,11 @@
58
58
  ],
59
59
  "repository": {
60
60
  "type": "git",
61
- "url": "git+https://github.com/im-fahad/react-video-player.git",
62
- "directory": "packages/vue-video-player"
61
+ "url": "git+https://github.com/im-fahad/vue-video-player.git"
63
62
  },
64
- "homepage": "https://github.com/im-fahad/react-video-player/tree/main/packages/vue-video-player#readme",
63
+ "homepage": "https://github.com/im-fahad/vue-video-player#readme",
65
64
  "bugs": {
66
- "url": "https://github.com/im-fahad/react-video-player/issues"
65
+ "url": "https://github.com/im-fahad/vue-video-player/issues"
67
66
  },
68
67
  "peerDependencies": {
69
68
  "hls.js": ">=1",