@morphisms/bin-linux-x64 0.1.0-beta.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 +45 -0
- package/bin/mor +0 -0
- package/bin/mor-workbench +0 -0
- package/package.json +21 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
Morphisms Proprietary Preview License
|
|
2
|
+
|
|
3
|
+
Licensor: Blake Sims / Zen AI Tutoring
|
|
4
|
+
Software: Morphisms preview binaries and packaged materials
|
|
5
|
+
|
|
6
|
+
1. Preview grant. You may install and use the Software locally for personal use,
|
|
7
|
+
internal business use, and commercial evaluation.
|
|
8
|
+
|
|
9
|
+
2. No redistribution. You may not copy, sell, sublicense, republish, mirror,
|
|
10
|
+
upload, package, or otherwise redistribute the Software or its binaries to
|
|
11
|
+
any third party without written permission from the Licensor.
|
|
12
|
+
|
|
13
|
+
3. No reverse engineering. You may not reverse engineer, decompile, disassemble,
|
|
14
|
+
modify, bypass technical limits in, or create derivative binary builds of the
|
|
15
|
+
Software, except where applicable law expressly forbids this restriction.
|
|
16
|
+
|
|
17
|
+
4. No hosted service resale. You may not provide the Software as a hosted or
|
|
18
|
+
managed service for others, or use it to offer substantially similar workflow
|
|
19
|
+
runtime services, without written permission from the Licensor.
|
|
20
|
+
|
|
21
|
+
5. Ownership. The Software is licensed, not sold. The Licensor retains all right,
|
|
22
|
+
title, and interest in the Software and related intellectual property.
|
|
23
|
+
|
|
24
|
+
6. Preview software. The Software is a preview. It may change, break, lose
|
|
25
|
+
compatibility, be withdrawn, or stop working at any time. Features, APIs,
|
|
26
|
+
data formats, and availability are not guaranteed.
|
|
27
|
+
|
|
28
|
+
7. Feedback. If you provide feedback, suggestions, or bug reports, you grant the
|
|
29
|
+
Licensor permission to use them without restriction or compensation.
|
|
30
|
+
|
|
31
|
+
8. Termination. This license terminates automatically if you violate its terms.
|
|
32
|
+
After termination, you must stop using the Software and delete all copies in
|
|
33
|
+
your possession or control.
|
|
34
|
+
|
|
35
|
+
9. No warranty. THE SOFTWARE IS PROVIDED "AS IS" AND "AS AVAILABLE," WITHOUT
|
|
36
|
+
WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING WARRANTIES OF
|
|
37
|
+
MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND
|
|
38
|
+
NON-INFRINGEMENT.
|
|
39
|
+
|
|
40
|
+
10. Limitation of liability. TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE
|
|
41
|
+
LICENSOR WILL NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL,
|
|
42
|
+
CONSEQUENTIAL, EXEMPLARY, OR PUNITIVE DAMAGES, OR FOR LOST PROFITS, LOST
|
|
43
|
+
DATA, BUSINESS INTERRUPTION, OR PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES.
|
|
44
|
+
|
|
45
|
+
If you want rights not granted here, contact Blake Sims / Zen AI Tutoring.
|
package/bin/mor
ADDED
|
Binary file
|
|
Binary file
|
package/package.json
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@morphisms/bin-linux-x64",
|
|
3
|
+
"version": "0.1.0-beta.1",
|
|
4
|
+
"description": "Morphisms linux x64 binaries",
|
|
5
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
6
|
+
"os": [
|
|
7
|
+
"linux"
|
|
8
|
+
],
|
|
9
|
+
"cpu": [
|
|
10
|
+
"x64"
|
|
11
|
+
],
|
|
12
|
+
"files": [
|
|
13
|
+
"bin/",
|
|
14
|
+
"LICENSE",
|
|
15
|
+
"package.json"
|
|
16
|
+
],
|
|
17
|
+
"bin": {
|
|
18
|
+
"mor": "bin/mor",
|
|
19
|
+
"mor-workbench": "bin/mor-workbench"
|
|
20
|
+
}
|
|
21
|
+
}
|