@utsp/audio 0.17.3 → 0.17.4

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 +25 -19
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,36 +1,42 @@
1
+ <div align="center">
2
+
1
3
  # @utsp/audio
2
4
 
3
- > ⚠️ **PROTOTYPE - NOT READY FOR PRODUCTION**
4
- >
5
- > This package is currently in early development and should **NOT** be used in production.
6
- > The API is unstable and subject to breaking changes without notice.
5
+ [![NPM Version](https://img.shields.io/npm/v/@utsp/audio.svg)](https://www.npmjs.com/package/@utsp/audio)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
 
8
- Audio system for UTSP (Universal Tile Stream Protocol) - Web Audio API management with spatial audio support.
8
+ Visit [**UTSP.dev**](https://utsp.dev/) for more information.
9
9
 
10
- [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
10
+ </div>
11
+
12
+ ---
13
+
14
+ The **Audio playback engine** for UTSP. It provides a high-level API for triggering sounds, applying real-time effects, and handling 2D spatialization for UTSP applications.
11
15
 
12
- ## ⚠️ Development Status
16
+ > [!WARNING]
17
+ > **PROTOTYPE - NOT READY FOR PRODUCTION**
18
+ > This package is under active development. The API is unstable and subject to breaking changes.
13
19
 
14
- **This is a prototype package under active development.**
20
+ > [!NOTE]
21
+ > **Source Code Availability**
22
+ > While this package is licensed under MIT, the source code is currently being finalized for public release. It will be available on GitHub in the coming months.
15
23
 
16
- - No stable API
17
- - ❌ No documentation available yet
18
- - ❌ Breaking changes expected
19
- - ❌ Not recommended for production use
24
+ ## Features
20
25
 
21
- **Please check back later for updates or watch the repository for release announcements.**
26
+ - **🎧 Spatial Audio**: 2D spatialization for immersive experiences.
27
+ - **✨ Audio Effects**: Real-time filters and global effects processing.
28
+ - **🎹 Playback Control**: Support for looping, volume fades, and pitch shifting.
22
29
 
23
- ## Installation
30
+ ## 📦 Installation
24
31
 
25
32
  ```bash
26
33
  npm install @utsp/audio
27
34
  ```
28
35
 
29
- ## Repository
36
+ ## 📖 Documentation
30
37
 
31
- - [GitHub](https://github.com/thp-software/utsp)
32
- - [Issues](https://github.com/thp-software/utsp/issues)
38
+ For detailed guides on the protocol and application development, visit the official [**Documentation**](https://docs.utsp.dev/introduction).
33
39
 
34
- ## License
40
+ ## 📄 License
35
41
 
36
- MIT © 2025 THP Software
42
+ MIT © 2026 [THP Software](https://github.com/thp-software)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utsp/audio",
3
- "version": "0.17.3",
3
+ "version": "0.17.4",
4
4
  "description": "UTSP audio engine - Web Audio API management for UTSP applications",
5
5
  "author": "THP Software",
6
6
  "license": "MIT",
@@ -45,7 +45,7 @@
45
45
  "devDependencies": {
46
46
  "@types/node": "^24.9.1",
47
47
  "typescript": "^5.6.3",
48
- "@utsp/types": "0.17.3"
48
+ "@utsp/types": "0.17.4"
49
49
  },
50
50
  "scripts": {
51
51
  "build": "rimraf dist && rimraf tsconfig.tsbuildinfo && node ../../scripts/build-package.mjs packages/audio",