@bonginkan/maria 1.0.6-alpha.4 → 1.6.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.
- package/LICENSE +106 -21
- package/README.md +355 -1353
- package/bin/maria +22 -33
- package/dist/bin/maria.js +18935 -34897
- package/dist/bin/maria.js.map +1 -1
- package/dist/cli.js +18634 -31940
- package/dist/cli.js.map +1 -1
- package/dist/index.d.ts +1193 -2
- package/dist/index.js +20953 -31885
- package/dist/index.js.map +1 -1
- package/dist/metafile-cjs.json +1 -1
- package/package.json +54 -8
package/LICENSE
CHANGED
|
@@ -1,21 +1,106 @@
|
|
|
1
|
-
|
|
2
|
-
|
|
3
|
-
Copyright (c) 2025 Bonginkan Inc.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
21
|
-
|
|
1
|
+
MARIA Platform Dual-License Agreement
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Bonginkan Inc. All rights reserved.
|
|
4
|
+
|
|
5
|
+
MARIA Platform is distributed under a dual-license model to serve both individual
|
|
6
|
+
developers and enterprise customers with appropriate terms and support levels.
|
|
7
|
+
|
|
8
|
+
================================================================================
|
|
9
|
+
PERSONAL USE LICENSE (FREE)
|
|
10
|
+
================================================================================
|
|
11
|
+
|
|
12
|
+
This license grants permission for personal, non-commercial use to:
|
|
13
|
+
|
|
14
|
+
ELIGIBLE USERS:
|
|
15
|
+
- Individual developers for personal projects
|
|
16
|
+
- Students and academics for educational purposes
|
|
17
|
+
- Open source project contributors
|
|
18
|
+
- Startups with fewer than 10 employees AND less than $1M ARR
|
|
19
|
+
|
|
20
|
+
PERMITTED USES:
|
|
21
|
+
- Personal software development and learning
|
|
22
|
+
- Educational and research purposes
|
|
23
|
+
- Non-commercial open source software development
|
|
24
|
+
- Evaluation and testing in non-production environments
|
|
25
|
+
|
|
26
|
+
RESTRICTIONS:
|
|
27
|
+
- Commercial use by organizations exceeding the startup threshold
|
|
28
|
+
- Redistribution of source code (compiled binaries only)
|
|
29
|
+
- Modification of core algorithms or security features
|
|
30
|
+
- Reverse engineering or decompilation attempts
|
|
31
|
+
|
|
32
|
+
================================================================================
|
|
33
|
+
ENTERPRISE LICENSE (PAID)
|
|
34
|
+
================================================================================
|
|
35
|
+
|
|
36
|
+
Commercial organizations exceeding the personal use thresholds require an
|
|
37
|
+
Enterprise License. Contact enterprise@bonginkan.ai for licensing terms.
|
|
38
|
+
|
|
39
|
+
ENTERPRISE LICENSE INCLUDES:
|
|
40
|
+
- Commercial usage rights for organizations of any size
|
|
41
|
+
- Priority technical support with SLA guarantees
|
|
42
|
+
- Access to enterprise security and compliance features
|
|
43
|
+
- Custom integration and deployment assistance
|
|
44
|
+
- Professional training and certification programs
|
|
45
|
+
|
|
46
|
+
ENTERPRISE RESTRICTIONS:
|
|
47
|
+
- Source code remains proprietary and is not distributed
|
|
48
|
+
- Custom modifications require explicit written permission
|
|
49
|
+
- Redistribution rights are limited to compiled binaries
|
|
50
|
+
|
|
51
|
+
================================================================================
|
|
52
|
+
SOURCE CODE PROTECTION
|
|
53
|
+
================================================================================
|
|
54
|
+
|
|
55
|
+
PROPRIETARY TECHNOLOGY:
|
|
56
|
+
The source code of MARIA Platform contains proprietary algorithms, AI models,
|
|
57
|
+
and enterprise-grade security implementations that are not distributed publicly.
|
|
58
|
+
|
|
59
|
+
DISTRIBUTION MODEL:
|
|
60
|
+
- Only compiled JavaScript binaries are distributed via NPM
|
|
61
|
+
- Source code access is restricted to authorized development team
|
|
62
|
+
- TypeScript definitions provided for API compatibility
|
|
63
|
+
|
|
64
|
+
INTELLECTUAL PROPERTY:
|
|
65
|
+
All core algorithms, AI training data, and security implementations remain
|
|
66
|
+
the exclusive intellectual property of Bonginkan Inc.
|
|
67
|
+
|
|
68
|
+
================================================================================
|
|
69
|
+
WARRANTY AND LIABILITY
|
|
70
|
+
================================================================================
|
|
71
|
+
|
|
72
|
+
PERSONAL USE DISCLAIMER:
|
|
73
|
+
This software is provided "AS IS" for personal use without warranty of any kind.
|
|
74
|
+
Users assume all risks associated with personal use applications.
|
|
75
|
+
|
|
76
|
+
ENTERPRISE WARRANTY:
|
|
77
|
+
Enterprise licenses include appropriate warranties and liability coverage
|
|
78
|
+
as specified in individual license agreements.
|
|
79
|
+
|
|
80
|
+
NO LIABILITY:
|
|
81
|
+
In no event shall Bonginkan Inc. be liable for any claim, damages, or other
|
|
82
|
+
liability arising from personal use of this software.
|
|
83
|
+
|
|
84
|
+
================================================================================
|
|
85
|
+
COMPLIANCE AND ENFORCEMENT
|
|
86
|
+
================================================================================
|
|
87
|
+
|
|
88
|
+
LICENSE COMPLIANCE:
|
|
89
|
+
Users must comply with license terms appropriate to their usage classification.
|
|
90
|
+
Unauthorized commercial use will result in license termination and legal action.
|
|
91
|
+
|
|
92
|
+
AUDIT RIGHTS:
|
|
93
|
+
Bonginkan Inc. reserves the right to audit compliance with license terms and
|
|
94
|
+
pursue legal remedies for violations.
|
|
95
|
+
|
|
96
|
+
CONTACT INFORMATION:
|
|
97
|
+
- Personal Use Support: github.com/bonginkan/maria_code/issues
|
|
98
|
+
- Enterprise Licensing: enterprise@bonginkan.ai
|
|
99
|
+
- Legal Inquiries: legal@bonginkan.ai
|
|
100
|
+
|
|
101
|
+
================================================================================
|
|
102
|
+
|
|
103
|
+
By using MARIA Platform, you acknowledge that you have read, understood, and
|
|
104
|
+
agree to be bound by the terms of this dual-license agreement.
|
|
105
|
+
|
|
106
|
+
For the most current license terms, visit: https://docs.maria-platform.ai/license
|