@vex-chat/cli 0.1.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/CLA.md +38 -0
- package/LICENSE +661 -0
- package/LICENSE-COMMERCIAL +10 -0
- package/LICENSING.md +15 -0
- package/README.md +62 -0
- package/package.json +53 -0
- package/src/vex-chat.js +4100 -0
- package/theme.yaml +36 -0
package/CLA.md
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
# Contributor License Agreement (Individual)
|
|
2
|
+
|
|
3
|
+
Thank you for your interest in contributing to this project (“**Project**”).
|
|
4
|
+
|
|
5
|
+
This Contributor License Agreement (“**Agreement**”) documents the rights granted by contributors to the Project’s copyright holders and maintainers (collectively, the “**Maintainers**”).
|
|
6
|
+
|
|
7
|
+
## Definitions
|
|
8
|
+
|
|
9
|
+
**“Contribution”** means any original work of authorship, including any modifications or additions to the Project, that you submit or have submitted to the Project in any form (for example, pull requests, issues with attached patches, or mailing-list posts).
|
|
10
|
+
|
|
11
|
+
**“Submit”** means any form of electronic or written communication sent to the Maintainers or Project repositories.
|
|
12
|
+
|
|
13
|
+
## Grant of rights
|
|
14
|
+
|
|
15
|
+
You hereby grant the Maintainers:
|
|
16
|
+
|
|
17
|
+
1. **Copyright license** — A perpetual, worldwide, non-exclusive, royalty-free, irrevocable license to reproduce, prepare derivative works of, publicly display, publicly perform, sublicense, and distribute your Contributions under the **AGPL-3.0-or-later** license that applies to the Project.
|
|
18
|
+
|
|
19
|
+
2. **Relicensing for dual licensing** — The same rights as in (1), but under **other license terms** chosen by the Maintainers, solely as needed to offer **commercial or proprietary licenses** to third parties, without owing you royalties for such sublicensing.
|
|
20
|
+
|
|
21
|
+
3. **Patent license** — If your Contribution includes a patent claim that you have the right to license, you grant the Maintainers and users of the Project a perpetual, worldwide, non-exclusive, royalty-free license under those claims to make, use, sell, offer for sale, import, and otherwise dispose of the Contribution and works including it.
|
|
22
|
+
|
|
23
|
+
## Representations
|
|
24
|
+
|
|
25
|
+
You represent that:
|
|
26
|
+
|
|
27
|
+
- Each Contribution is your original creation, or you have sufficient rights to submit it under this Agreement.
|
|
28
|
+
- To your knowledge, your Contribution does not violate anyone else’s rights.
|
|
29
|
+
|
|
30
|
+
## Miscellaneous
|
|
31
|
+
|
|
32
|
+
This Agreement does not obligate the Maintainers to use or merge your Contributions.
|
|
33
|
+
|
|
34
|
+
If any part of this Agreement is held invalid, the remainder stays in effect.
|
|
35
|
+
|
|
36
|
+
---
|
|
37
|
+
|
|
38
|
+
_This document is a practical starting point for open-source contribution. It is **not** legal advice. Have qualified counsel review and adapt it for your jurisdiction and entity before relying on it for government, procurement, or high-stakes decisions._
|