@codixus/server 0.1.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 +31 -0
- package/dist/index.cjs +1109 -0
- package/dist/index.cjs.map +1 -0
- package/dist/index.d.cts +240 -0
- package/dist/index.d.ts +240 -0
- package/dist/index.js +1068 -0
- package/dist/index.js.map +1 -0
- package/package.json +50 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
Codixus SDK - Proprietary License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2026 Codixus. All rights reserved.
|
|
4
|
+
|
|
5
|
+
This software and associated documentation files (the "Software") are the
|
|
6
|
+
proprietary property of Codixus.
|
|
7
|
+
|
|
8
|
+
Permission is hereby granted to install and use the Software in applications
|
|
9
|
+
developed by the licensee, subject to the following conditions:
|
|
10
|
+
|
|
11
|
+
1. The Software may not be copied, modified, merged, published, distributed,
|
|
12
|
+
sublicensed, or sold, in whole or in part, without the prior written
|
|
13
|
+
permission of Codixus.
|
|
14
|
+
|
|
15
|
+
2. The Software may not be reverse engineered, decompiled, or disassembled,
|
|
16
|
+
except to the extent that such activity is expressly permitted by
|
|
17
|
+
applicable law.
|
|
18
|
+
|
|
19
|
+
3. The source code of the Software may not be used to create derivative
|
|
20
|
+
works or competing products.
|
|
21
|
+
|
|
22
|
+
4. This license does not grant any rights to use the Codixus name, logo,
|
|
23
|
+
or trademarks.
|
|
24
|
+
|
|
25
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
26
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
27
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
28
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
29
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
30
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
31
|
+
SOFTWARE.
|