@tsworldtech/flux-sse 0.0.1 → 0.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.
- package/LICENSE.md +65 -0
- package/package.json +5 -4
package/LICENSE.md
ADDED
|
@@ -0,0 +1,65 @@
|
|
|
1
|
+
Flux Software License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 TSWorldTech. All rights reserved.
|
|
4
|
+
|
|
5
|
+
1. GRANT OF LICENSE
|
|
6
|
+
|
|
7
|
+
Subject to the terms of this License, TSWorldTech grants you a
|
|
8
|
+
non-exclusive, non-transferable, revocable license to install, execute,
|
|
9
|
+
and use this software ("Flux") in your applications, in accordance with
|
|
10
|
+
the feature set and usage limits of the tier you are operating under
|
|
11
|
+
(Free, Starter, Pro, or Enterprise), as described at
|
|
12
|
+
https://tsworldtech.com/flux/docs/license/quotas.
|
|
13
|
+
|
|
14
|
+
The Free tier may be used at no cost, without a license key, subject to
|
|
15
|
+
the usage limits and feature restrictions in effect for that tier. Use
|
|
16
|
+
beyond Free-tier limits, or use of Starter/Pro/Enterprise-gated features,
|
|
17
|
+
requires a valid, currently-active license key issued by TSWorldTech and
|
|
18
|
+
is subject to the payment terms for that tier.
|
|
19
|
+
|
|
20
|
+
2. RESTRICTIONS
|
|
21
|
+
|
|
22
|
+
You may NOT, without prior written permission from TSWorldTech:
|
|
23
|
+
|
|
24
|
+
a. Redistribute, sublicense, sell, rent, or lease this software,
|
|
25
|
+
in source or compiled form, as a standalone product or as part
|
|
26
|
+
of a competing product or service.
|
|
27
|
+
b. Reverse engineer, decompile, or disassemble this software, except
|
|
28
|
+
to the extent such restriction is prohibited by applicable law.
|
|
29
|
+
c. Remove, obscure, or alter any licensing, telemetry, or attribution
|
|
30
|
+
mechanisms embedded in this software, including but not limited to
|
|
31
|
+
the domain-binding and license verification systems described in
|
|
32
|
+
the documentation.
|
|
33
|
+
d. Use this software to build a product or service that substantially
|
|
34
|
+
replicates Flux's core functionality for commercial distribution.
|
|
35
|
+
|
|
36
|
+
3. OWNERSHIP
|
|
37
|
+
|
|
38
|
+
This software is licensed, not sold. TSWorldTech retains all right,
|
|
39
|
+
title, and interest in and to the software, including all intellectual
|
|
40
|
+
property rights therein. This License does not grant you any rights to
|
|
41
|
+
TSWorldTech's trademarks, service marks, or logos.
|
|
42
|
+
|
|
43
|
+
4. TERMINATION
|
|
44
|
+
|
|
45
|
+
This License is effective until terminated. TSWorldTech may terminate
|
|
46
|
+
this License immediately if you fail to comply with any term herein.
|
|
47
|
+
Upon termination, you must cease all use of the software and destroy
|
|
48
|
+
all copies in your possession.
|
|
49
|
+
|
|
50
|
+
5. NO WARRANTY
|
|
51
|
+
|
|
52
|
+
THIS SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
53
|
+
OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
54
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT.
|
|
55
|
+
|
|
56
|
+
6. LIMITATION OF LIABILITY
|
|
57
|
+
|
|
58
|
+
IN NO EVENT SHALL TSWORLDTECH BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER
|
|
59
|
+
LIABILITY ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR
|
|
60
|
+
THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
|
61
|
+
|
|
62
|
+
7. CONTACT
|
|
63
|
+
|
|
64
|
+
For licensing questions, enterprise terms, or permission requests,
|
|
65
|
+
contact: tsworldtech@gmail.com or visit https://tsworldtechflux.dev/docs/license/setup.
|
package/package.json
CHANGED
|
@@ -1,15 +1,16 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tsworldtech/flux-sse",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.2",
|
|
4
4
|
"private": false,
|
|
5
5
|
"type": "module",
|
|
6
|
-
"license": "
|
|
6
|
+
"license": "SEE LICENSE IN LICENSE.md",
|
|
7
7
|
"description": "Server-Sent Events realtime adapter for @tsworldtech/flux",
|
|
8
8
|
"main": "./dist/index.cjs",
|
|
9
9
|
"module": "./dist/index.js",
|
|
10
10
|
"types": "./dist/index.d.ts",
|
|
11
11
|
"files": [
|
|
12
|
-
"dist"
|
|
12
|
+
"dist",
|
|
13
|
+
"LICENSE.md"
|
|
13
14
|
],
|
|
14
15
|
"exports": {
|
|
15
16
|
".": {
|
|
@@ -27,7 +28,7 @@
|
|
|
27
28
|
"devDependencies": {
|
|
28
29
|
"tsup": "^8.3.5",
|
|
29
30
|
"typescript": "5.9.3",
|
|
30
|
-
"@tsworldtech/flux": "0.0.
|
|
31
|
+
"@tsworldtech/flux": "0.0.2"
|
|
31
32
|
},
|
|
32
33
|
"scripts": {
|
|
33
34
|
"build": "tsup"
|