oddysee-react 0.1.1 → 0.2.0-canary.1
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.
- package/README.md +4 -2
- package/dist/index.cjs +33399 -2
- package/dist/index.d.cts +184 -1
- package/dist/index.d.ts +184 -1
- package/dist/index.js +33404 -3
- package/package.json +11 -4
- package/eslint.config.js +0 -23
- package/src/index.ts +0 -2
- package/src/use-hls-audio-player.ts +0 -241
- package/tsconfig.app.json +0 -28
- package/tsconfig.json +0 -7
- package/tsconfig.lib.json +0 -16
- package/tsconfig.node.json +0 -26
- package/vite.config.ts +0 -7
package/README.md
CHANGED
|
@@ -2,6 +2,9 @@
|
|
|
2
2
|
|
|
3
3
|
A React hook that provides a simple, intuitive interface for HLS audio streaming using the core HLS audio player.
|
|
4
4
|
|
|
5
|
+
## ⚠️ Status: Beta
|
|
6
|
+
Oddysee is actively evolving. APIs may change, and breaking changes can occur between minor releases.
|
|
7
|
+
|
|
5
8
|
## Installation
|
|
6
9
|
|
|
7
10
|
```bash
|
|
@@ -352,5 +355,4 @@ export default function EventHandlingPlayer() {
|
|
|
352
355
|
- oddysee-typescript (peer dependency)
|
|
353
356
|
|
|
354
357
|
## License
|
|
355
|
-
|
|
356
|
-
Apache-2.0
|
|
358
|
+
MIT
|