@utsp/network-client 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 +23 -19
  2. package/package.json +2 -2
package/README.md CHANGED
@@ -1,36 +1,40 @@
1
+ <div align="center">
2
+
1
3
  # @utsp/network-client
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/network-client.svg)](https://www.npmjs.com/package/@utsp/network-client)
6
+ [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](https://opensource.org/licenses/MIT)
7
7
 
8
- Client-side network communication layer for UTSP (Universal Tile Stream Protocol).
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 **Client-side networking** layer for UTSP. It provides standardized transport implementations for both Socket.IO and WebRTC, enabling seamless connectivity between high-level runtimes and remote servers.
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
+ - **🔌 Unified Transport**: Standardized API for Socket.IO and WebRTC.
22
27
 
23
- ## Installation
28
+ ## 📦 Installation
24
29
 
25
30
  ```bash
26
31
  npm install @utsp/network-client
27
32
  ```
28
33
 
29
- ## Repository
34
+ ## 📖 Documentation
30
35
 
31
- - [GitHub](https://github.com/thp-software/utsp)
32
- - [Issues](https://github.com/thp-software/utsp/issues)
36
+ For detailed guides on the protocol and application development, visit the official [**Documentation**](https://docs.utsp.dev/introduction).
33
37
 
34
- ## License
38
+ ## 📄 License
35
39
 
36
- MIT © 2025 THP Software
40
+ MIT © 2026 [THP Software](https://github.com/thp-software)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@utsp/network-client",
3
- "version": "0.17.3",
3
+ "version": "0.17.4",
4
4
  "description": "UTSP Network Client - Client-side communication adapters",
5
5
  "author": "THP Software",
6
6
  "license": "MIT",
@@ -49,7 +49,7 @@
49
49
  },
50
50
  "dependencies": {
51
51
  "socket.io-client": "^4.7.2",
52
- "@utsp/types": "0.17.3"
52
+ "@utsp/types": "0.17.4"
53
53
  },
54
54
  "devDependencies": {
55
55
  "typescript": "^5.6.3"