@dragonmastery/dragoncore-shared 0.0.1
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 +75 -0
- package/dist/index.d.mts +9504 -0
- package/dist/index.mjs +1680 -0
- package/dist/index.mjs.map +1 -0
- package/package.json +44 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
DRAGONCORE SHARED EVALUATION LICENSE
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 DragonMastery. All rights reserved.
|
|
4
|
+
|
|
5
|
+
================================================================================
|
|
6
|
+
|
|
7
|
+
NOTICE: This software and associated documentation files (the "Software") are
|
|
8
|
+
proprietary to DragonMastery.
|
|
9
|
+
|
|
10
|
+
GRANT OF EVALUATION LICENSE:
|
|
11
|
+
|
|
12
|
+
DragonMastery grants you a limited, non-exclusive, non-transferable, revocable
|
|
13
|
+
license to:
|
|
14
|
+
|
|
15
|
+
1. EVALUATION USE: Download and use the Software for evaluation and testing
|
|
16
|
+
purposes in non-production environments only.
|
|
17
|
+
|
|
18
|
+
2. DEVELOPMENT USE: Use the Software in local development environments for
|
|
19
|
+
proof-of-concept and evaluation purposes only.
|
|
20
|
+
|
|
21
|
+
3. INSPECTION: View and study the source code for evaluation purposes only.
|
|
22
|
+
|
|
23
|
+
RESTRICTIONS:
|
|
24
|
+
|
|
25
|
+
Without a separate commercial license from DragonMastery, you may NOT:
|
|
26
|
+
|
|
27
|
+
1. Use the Software in any production environment or live application
|
|
28
|
+
2. Use the Software in any commercial capacity or revenue-generating service
|
|
29
|
+
3. Modify, adapt, or create derivative works based on the Software
|
|
30
|
+
4. Redistribute, sublicense, sell, rent, lease, or transfer the Software
|
|
31
|
+
5. Remove or alter any copyright, trademark, or proprietary notices
|
|
32
|
+
6. Use the Software to develop competing products or services
|
|
33
|
+
7. Provide access to the Software to third parties for their use
|
|
34
|
+
|
|
35
|
+
PRODUCTION & COMMERCIAL LICENSE:
|
|
36
|
+
|
|
37
|
+
To use this Software in production environments or for commercial purposes, you
|
|
38
|
+
MUST obtain a separate commercial license from DragonMastery.
|
|
39
|
+
|
|
40
|
+
Contact for licensing:
|
|
41
|
+
|
|
42
|
+
- Repository: https://github.com/DragonMastery/zinia-forms
|
|
43
|
+
- Open a GitHub issue for licensing inquiries
|
|
44
|
+
|
|
45
|
+
TERMINATION:
|
|
46
|
+
|
|
47
|
+
This License is effective until terminated. Your rights under this License
|
|
48
|
+
terminate automatically without notice if you fail to comply with any term. Upon
|
|
49
|
+
termination, you must immediately cease all use and destroy all copies of the
|
|
50
|
+
Software.
|
|
51
|
+
|
|
52
|
+
DISCLAIMER OF WARRANTY:
|
|
53
|
+
|
|
54
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
55
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS
|
|
56
|
+
FOR A PARTICULAR PURPOSE, AND NONINFRINGEMENT. DRAGONMASTERY MAKES NO WARRANTY
|
|
57
|
+
THAT THE SOFTWARE WILL BE ERROR-FREE OR UNINTERRUPTED.
|
|
58
|
+
|
|
59
|
+
LIMITATION OF LIABILITY:
|
|
60
|
+
|
|
61
|
+
IN NO EVENT SHALL DRAGONMASTERY BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
62
|
+
SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
|
|
63
|
+
PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
|
|
64
|
+
BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
65
|
+
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
|
|
66
|
+
IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY
|
|
67
|
+
OF SUCH DAMAGE.
|
|
68
|
+
|
|
69
|
+
ACKNOWLEDGMENT:
|
|
70
|
+
|
|
71
|
+
By downloading, installing, or using the Software, you acknowledge that you have
|
|
72
|
+
read this License, understand it, and agree to be bound by its terms and
|
|
73
|
+
conditions.
|
|
74
|
+
|
|
75
|
+
================================================================================
|