slid-phi 2.2.1 → 2.2.4
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 +1 -1
- package/README.md +12 -2
- package/package.json +2 -2
- package/src/index.mjs +4 -4
package/LICENSE
CHANGED
package/README.md
CHANGED
|
@@ -1,10 +1,20 @@
|
|
|
1
1
|
# slid-phi (public stub)
|
|
2
2
|
|
|
3
|
+
|
|
4
|
+
<p align="center">
|
|
5
|
+
<img src="./brand/slid-phi-labs-master.jpg" alt="Zero Range Wave · Slid Phi Labs" width="720"/>
|
|
6
|
+
</p>
|
|
7
|
+
|
|
8
|
+
<p align="center"><strong>Slid Phi Labs</strong> — official product branding</p>
|
|
9
|
+
|
|
10
|
+
<p align="center"><img src="https://raw.githubusercontent.com/ceedot-rock/splabs-brand/main/assets/brand/logos/logo-slid-phi.jpg" alt="product logo" width="280"/></p>
|
|
11
|
+
|
|
12
|
+
|
|
3
13
|
**Proprietary.** Public npm does **not** include codec source.
|
|
4
14
|
|
|
5
15
|
## Get the real package
|
|
6
16
|
|
|
7
|
-
1. [Try Gate](https://slidphilabs.
|
|
8
|
-
2. [Access](https://slidphilabs.
|
|
17
|
+
1. [Try Gate](https://www.slidphilabs.com/try) or purchase support/license
|
|
18
|
+
2. [Access](https://www.slidphilabs.com/access) — private install or download
|
|
9
19
|
|
|
10
20
|
© Slid Phi Labs · All rights reserved
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "slid-phi",
|
|
3
|
-
"version": "2.2.
|
|
3
|
+
"version": "2.2.4",
|
|
4
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",
|
|
@@ -19,7 +19,7 @@
|
|
|
19
19
|
],
|
|
20
20
|
"author": "Slid Phi Labs",
|
|
21
21
|
"license": "SEE LICENSE IN LICENSE",
|
|
22
|
-
"homepage": "https://slidphilabs.
|
|
22
|
+
"homepage": "https://www.slidphilabs.com",
|
|
23
23
|
"repository": {
|
|
24
24
|
"type": "git",
|
|
25
25
|
"url": "git+https://github.com/ceedot-rock/SlidPhiLabs.git"
|
package/src/index.mjs
CHANGED
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
/** Proprietary stub — no codec on public npm. https://slidphilabs.
|
|
1
|
+
/** Proprietary stub — no codec on public npm. https://www.slidphilabs.com/access */
|
|
2
2
|
const MSG =
|
|
3
3
|
"slid-phi is proprietary (SlidPhiLabs). " +
|
|
4
4
|
"Public npm only ships a stub. After purchase or Try Gate, you receive the real package. " +
|
|
5
|
-
"https://slidphilabs.
|
|
5
|
+
"https://www.slidphilabs.com/access";
|
|
6
6
|
function blocked() { throw new Error(MSG); }
|
|
7
7
|
export const encode = blocked;
|
|
8
8
|
export const decode = blocked;
|
|
9
9
|
export const encodeHybrid = blocked;
|
|
10
10
|
export const decodeHybrid = blocked;
|
|
11
|
-
export const OMNI_META = { stub: true, access: "https://slidphilabs.
|
|
11
|
+
export const OMNI_META = { stub: true, access: "https://www.slidphilabs.com/access" };
|
|
12
12
|
export default { encode, decode, encodeHybrid, decodeHybrid, OMNI_META };
|
|
13
|
-
console.warn("[SlidPhiLabs] Stub — no codec source. → https://slidphilabs.
|
|
13
|
+
console.warn("[SlidPhiLabs] Stub — no codec source. → https://www.slidphilabs.com/access");
|