@ts-runtypes/binary-linux-x64 0.9.0

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 (3) hide show
  1. package/LICENSE +104 -0
  2. package/lib/ts-runtypes +0 -0
  3. package/package.json +29 -0
package/LICENSE ADDED
@@ -0,0 +1,104 @@
1
+ RunTypes Small Organization License 1.0.0
2
+
3
+ Copyright (c) 2026 Ma Jerez. All rights reserved except as expressly granted below.
4
+
5
+ ## Purpose
6
+
7
+ This license lets individuals and smaller organizations use the software for
8
+ free, subject to the rules below. Larger organizations must obtain a paid
9
+ commercial license. This is a proprietary, source-available style license; it is
10
+ NOT an open source license.
11
+
12
+ ## Acceptance
13
+
14
+ To exercise any rights under this license you must agree to its rules. Those
15
+ rules are both obligations under your agreement with the licensor and conditions
16
+ of your license. Do not do anything with the software that this license does not
17
+ expressly permit.
18
+
19
+ ## Free License
20
+
21
+ The licensor grants you a non-exclusive, non-transferable, royalty-free,
22
+ worldwide license to install, run, and use the software, and to include it as a
23
+ dependency in your own applications and deploy those applications, provided that:
24
+
25
+ - you qualify as a Small Organization (see below), and
26
+ - you comply with the Limitations below.
27
+
28
+ ## Small Organization
29
+
30
+ You qualify for the Free License only if you are:
31
+
32
+ - an individual using the software; or
33
+ - an organization whose total gross revenue, aggregated across the organization
34
+ and all of its affiliates, was less than 10,000,000 US dollars (USD) during its
35
+ most recently completed fiscal year.
36
+
37
+ "Affiliates" means all entities that control, are controlled by, or are under
38
+ common control with an organization.
39
+
40
+ If you do not qualify, you must obtain a Commercial License before using the
41
+ software.
42
+
43
+ ## Limitations
44
+
45
+ The Free License does NOT permit you to:
46
+
47
+ - copy or reproduce the software, except as strictly necessary to install and run
48
+ it for your permitted use;
49
+ - modify the software or create derivative works from it;
50
+ - distribute, publish, sublicense, sell, rent, lease, or otherwise make the
51
+ software available to any third party, except as embedded in your own
52
+ applications for their normal operation;
53
+ - reverse engineer, decompile, or disassemble any part of the software provided
54
+ in compiled or binary form, except to the extent this restriction is prohibited
55
+ by applicable law;
56
+ - remove or alter any copyright, license, or other proprietary notices.
57
+
58
+ All rights not expressly granted here are reserved by the licensor.
59
+
60
+ ## Commercial License
61
+
62
+ If you do not qualify as a Small Organization, or if you need rights beyond those
63
+ granted by the Free License, you must obtain a separate commercial license from
64
+ the licensor. To request one, contact: jerez.m82@gmail.com.
65
+
66
+ ## Notices
67
+
68
+ You must keep this license file, and all copyright and other notices, with every
69
+ copy of the software.
70
+
71
+ ## No Other Rights
72
+
73
+ This license does not grant you any rights in the licensor's trademarks, patents,
74
+ or other intellectual property, except the copyright rights expressly stated
75
+ above.
76
+
77
+ ## Termination
78
+
79
+ If you violate this license, it terminates automatically. On termination you must
80
+ stop using the software and delete all copies in your possession or control. If
81
+ your violation is capable of cure, your license is reinstated if you cure the
82
+ violation within 30 days of first becoming aware of it, unless the licensor has
83
+ already notified you that your license has terminated.
84
+
85
+ ## No Warranty
86
+
87
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
88
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
89
+ FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. YOU BEAR THE ENTIRE RISK OF USING
90
+ THE SOFTWARE.
91
+
92
+ ## Limitation of Liability
93
+
94
+ TO THE MAXIMUM EXTENT PERMITTED BY LAW, IN NO EVENT WILL THE LICENSOR BE LIABLE
95
+ FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
96
+ TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN CONNECTION WITH THE SOFTWARE OR
97
+ THE USE OR OTHER DEALINGS IN THE SOFTWARE.
98
+
99
+ ## Definitions
100
+
101
+ - "Licensor" means Ma Jerez, the copyright holder.
102
+ - "Software" means the RunTypes packages published under the @ts-runtypes npm
103
+ scope, together with any files distributed with them under this license.
104
+ - "You" means the individual or entity exercising rights under this license.
Binary file
package/package.json ADDED
@@ -0,0 +1,29 @@
1
+ {
2
+ "name": "@ts-runtypes/binary-linux-x64",
3
+ "version": "0.9.0",
4
+ "description": "Prebuilt ts-runtypes resolver binary for linux-x64.",
5
+ "homepage": "https://runtypes.pages.dev",
6
+ "bugs": {
7
+ "url": "https://github.com/MionKit/ts-run-types/issues"
8
+ },
9
+ "license": "SEE LICENSE IN LICENSE",
10
+ "os": [
11
+ "linux"
12
+ ],
13
+ "cpu": [
14
+ "x64"
15
+ ],
16
+ "files": [
17
+ "lib"
18
+ ],
19
+ "exports": {
20
+ "./package.json": "./package.json"
21
+ },
22
+ "repository": {
23
+ "type": "git",
24
+ "url": "git+https://github.com/MionKit/ts-run-types.git"
25
+ },
26
+ "publishConfig": {
27
+ "access": "public"
28
+ }
29
+ }