horizon-code 0.6.2 → 0.6.3
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 +74 -0
- package/package.json +3 -3
package/LICENSE
ADDED
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Horizon Code License
|
|
2
|
+
Version 1.0
|
|
3
|
+
|
|
4
|
+
Copyright (c) 2025-2026 The Mathematical Company of California.
|
|
5
|
+
All rights reserved.
|
|
6
|
+
|
|
7
|
+
1. Grant of Rights
|
|
8
|
+
|
|
9
|
+
Subject to the terms of this license, The Mathematical Company of
|
|
10
|
+
California ("Licensor") grants you a non-exclusive, worldwide,
|
|
11
|
+
royalty-free license to use, copy, modify, and distribute the
|
|
12
|
+
software and its source code for:
|
|
13
|
+
|
|
14
|
+
(a) Personal use
|
|
15
|
+
(b) Educational and academic use
|
|
16
|
+
(c) Non-commercial research and evaluation
|
|
17
|
+
(d) Internal use within your organization for non-commercial purposes
|
|
18
|
+
|
|
19
|
+
2. Commercial Use Restriction
|
|
20
|
+
|
|
21
|
+
Any use of this software for commercial purposes requires a separate
|
|
22
|
+
commercial license from the Licensor. "Commercial purposes" includes,
|
|
23
|
+
but is not limited to:
|
|
24
|
+
|
|
25
|
+
(a) Using the software to provide paid services or products
|
|
26
|
+
(b) Incorporating the software into a commercial product or service
|
|
27
|
+
(c) Using the software to generate revenue, directly or indirectly
|
|
28
|
+
(d) Offering the software as a hosted or managed service
|
|
29
|
+
|
|
30
|
+
To obtain a commercial license, contact:
|
|
31
|
+
|
|
32
|
+
The Mathematical Company of California
|
|
33
|
+
Email: hello@mathematicalcompany.com
|
|
34
|
+
Website: https://mathematicalcompany.com
|
|
35
|
+
|
|
36
|
+
3. Redistribution
|
|
37
|
+
|
|
38
|
+
You may redistribute the source code, provided that:
|
|
39
|
+
|
|
40
|
+
(a) You include this license and copyright notice in all copies
|
|
41
|
+
(b) You clearly state any modifications you have made
|
|
42
|
+
(c) You do not remove or alter the Licensor's branding or attribution
|
|
43
|
+
(d) Redistributions are subject to the same license terms
|
|
44
|
+
|
|
45
|
+
4. Contributions
|
|
46
|
+
|
|
47
|
+
By submitting contributions to this project, you grant the Licensor a
|
|
48
|
+
perpetual, worldwide, royalty-free license to use, modify, and
|
|
49
|
+
distribute your contributions under any license terms the Licensor
|
|
50
|
+
chooses.
|
|
51
|
+
|
|
52
|
+
5. Trademarks
|
|
53
|
+
|
|
54
|
+
This license does not grant you any rights to use the Licensor's
|
|
55
|
+
trade names, trademarks, service marks, or product names, except as
|
|
56
|
+
required for reasonable and customary use in describing the origin
|
|
57
|
+
of the software.
|
|
58
|
+
|
|
59
|
+
6. No Warranty
|
|
60
|
+
|
|
61
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
|
|
62
|
+
EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
63
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND
|
|
64
|
+
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS
|
|
65
|
+
BE LIABLE FOR ANY CLAIM, DAMAGES, OR OTHER LIABILITY, WHETHER IN AN
|
|
66
|
+
ACTION OF CONTRACT, TORT, OR OTHERWISE, ARISING FROM, OUT OF, OR IN
|
|
67
|
+
CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
68
|
+
SOFTWARE.
|
|
69
|
+
|
|
70
|
+
7. Termination
|
|
71
|
+
|
|
72
|
+
This license is automatically terminated if you violate any of its
|
|
73
|
+
terms. Upon termination, you must destroy all copies of the software
|
|
74
|
+
in your possession.
|
package/package.json
CHANGED
|
@@ -1,6 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "horizon-code",
|
|
3
|
-
"version": "0.6.
|
|
3
|
+
"version": "0.6.3",
|
|
4
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
4
5
|
"description": "AI-powered trading strategy terminal for Polymarket",
|
|
5
6
|
"type": "module",
|
|
6
7
|
"bin": {
|
|
@@ -24,8 +25,7 @@
|
|
|
24
25
|
"horizon"
|
|
25
26
|
],
|
|
26
27
|
"author": "Oppenheimer Labs",
|
|
27
|
-
|
|
28
|
-
"devDependencies": {
|
|
28
|
+
"devDependencies": {
|
|
29
29
|
"@types/bun": "latest"
|
|
30
30
|
},
|
|
31
31
|
"peerDependencies": {
|