slid-phi 2.2.0 → 2.2.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 +5 -5
- package/README.md +1 -1
- package/package.json +21 -8
package/LICENSE
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
|
|
2
|
-
Copyright (c) 2026
|
|
1
|
+
Slid Phi Labs Proprietary License
|
|
2
|
+
Copyright (c) 2026 Slid Phi Labs / Corey Tasz. All rights reserved.
|
|
3
3
|
|
|
4
|
-
This software (slid-phi /
|
|
5
|
-
are the proprietary property of
|
|
4
|
+
This software (slid-phi / Slid Phi Labs) and associated documentation (the "Software")
|
|
5
|
+
are the proprietary property of Slid Phi Labs / Corey Tasz.
|
|
6
6
|
|
|
7
7
|
PERMISSIONS
|
|
8
8
|
- Evaluation and non-commercial personal use are allowed solely for testing and
|
|
@@ -10,7 +10,7 @@ PERMISSIONS
|
|
|
10
10
|
hosted/SaaS codec service.
|
|
11
11
|
- Commercial use, redistribution, sublicensing, or incorporation into a product
|
|
12
12
|
or service offered to third parties requires a separate written commercial
|
|
13
|
-
license from
|
|
13
|
+
license from Slid Phi Labs.
|
|
14
14
|
|
|
15
15
|
RESTRICTIONS
|
|
16
16
|
- You may not copy, modify, merge, publish, distribute, sublicense, and/or sell
|
package/README.md
CHANGED
package/package.json
CHANGED
|
@@ -1,14 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slid-phi",
|
|
3
|
-
"version": "2.2.
|
|
4
|
-
"description": "
|
|
3
|
+
"version": "2.2.1",
|
|
4
|
+
"description": "Slid Phi Labs Omni-Dormant integer codecs \u2014 Zeckendorf / hybrid Fibonacci + optional gap-ANS path. Pure JS. Support and integration available.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "src/index.mjs",
|
|
7
|
-
"exports": {
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
"
|
|
7
|
+
"exports": {
|
|
8
|
+
".": "./src/index.mjs"
|
|
9
|
+
},
|
|
10
|
+
"files": [
|
|
11
|
+
"src/index.mjs",
|
|
12
|
+
"README.md",
|
|
13
|
+
"LICENSE"
|
|
14
|
+
],
|
|
15
|
+
"keywords": [
|
|
16
|
+
"slid phi labs",
|
|
17
|
+
"proprietary",
|
|
18
|
+
"stub"
|
|
19
|
+
],
|
|
20
|
+
"author": "Slid Phi Labs",
|
|
11
21
|
"license": "SEE LICENSE IN LICENSE",
|
|
12
|
-
"homepage": "https://slidphilabs.vercel.app
|
|
13
|
-
"repository": {
|
|
22
|
+
"homepage": "https://slidphilabs.vercel.app",
|
|
23
|
+
"repository": {
|
|
24
|
+
"type": "git",
|
|
25
|
+
"url": "git+https://github.com/ceedot-rock/SlidPhiLabs.git"
|
|
26
|
+
}
|
|
14
27
|
}
|