slid-phi 2.2.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 +38 -0
- package/README.md +10 -0
- package/package.json +14 -0
- package/src/index.mjs +13 -0
package/LICENSE
ADDED
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
SlidPhiLabs Proprietary License
|
|
2
|
+
Copyright (c) 2026 SlidPhiLabs / Corey Tasz. All rights reserved.
|
|
3
|
+
|
|
4
|
+
This software (slid-phi / SlidPhiLabs) and associated documentation (the "Software")
|
|
5
|
+
are the proprietary property of SlidPhiLabs / Corey Tasz.
|
|
6
|
+
|
|
7
|
+
PERMISSIONS
|
|
8
|
+
- Evaluation and non-commercial personal use are allowed solely for testing and
|
|
9
|
+
learning, provided the Software is not redistributed, resold, or offered as a
|
|
10
|
+
hosted/SaaS codec service.
|
|
11
|
+
- Commercial use, redistribution, sublicensing, or incorporation into a product
|
|
12
|
+
or service offered to third parties requires a separate written commercial
|
|
13
|
+
license from SlidPhiLabs.
|
|
14
|
+
|
|
15
|
+
RESTRICTIONS
|
|
16
|
+
- You may not copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
17
|
+
copies of the Software except as expressly permitted above or by a commercial
|
|
18
|
+
license.
|
|
19
|
+
- You may not remove or alter copyright notices.
|
|
20
|
+
|
|
21
|
+
COMMERCIAL LICENSING
|
|
22
|
+
Contact: ceedotrock@gmail.com
|
|
23
|
+
Site: https://slidphilabs.vercel.app
|
|
24
|
+
Support / integration and paid tiers: see site pricing and Stripe links.
|
|
25
|
+
|
|
26
|
+
NO WARRANTY
|
|
27
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
28
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
29
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
30
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
31
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
32
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
33
|
+
SOFTWARE.
|
|
34
|
+
|
|
35
|
+
NOTE ON PRIOR VERSIONS
|
|
36
|
+
Versions published under the MIT License remain available under MIT terms as
|
|
37
|
+
originally released. This proprietary license applies to this version and later
|
|
38
|
+
unless a different license is stated.
|
package/README.md
ADDED
|
@@ -0,0 +1,10 @@
|
|
|
1
|
+
# slid-phi (public stub)
|
|
2
|
+
|
|
3
|
+
**Proprietary.** Public npm does **not** include codec source.
|
|
4
|
+
|
|
5
|
+
## Get the real package
|
|
6
|
+
|
|
7
|
+
1. [Try Gate](https://slidphilabs.vercel.app/try) or purchase support/license
|
|
8
|
+
2. [Access](https://slidphilabs.vercel.app/access) — private install or download
|
|
9
|
+
|
|
10
|
+
© SlidPhiLabs · All rights reserved
|
package/package.json
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "slid-phi",
|
|
3
|
+
"version": "2.2.0",
|
|
4
|
+
"description": "STUB — proprietary SlidPhiLabs Omni-Dormant codecs. Real package after purchase or Try Gate. https://slidphilabs.vercel.app/access",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "src/index.mjs",
|
|
7
|
+
"exports": { ".": "./src/index.mjs" },
|
|
8
|
+
"files": ["src/index.mjs", "README.md", "LICENSE"],
|
|
9
|
+
"keywords": ["slidphilabs", "proprietary", "stub"],
|
|
10
|
+
"author": "SlidPhiLabs",
|
|
11
|
+
"license": "SEE LICENSE IN LICENSE",
|
|
12
|
+
"homepage": "https://slidphilabs.vercel.app/access",
|
|
13
|
+
"repository": { "type": "git", "url": "git+https://github.com/ceedot-rock/SlidPhiLabs.git" }
|
|
14
|
+
}
|
package/src/index.mjs
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
/** Proprietary stub — no codec on public npm. https://slidphilabs.vercel.app/access */
|
|
2
|
+
const MSG =
|
|
3
|
+
"slid-phi is proprietary (SlidPhiLabs). " +
|
|
4
|
+
"Public npm only ships a stub. After purchase or Try Gate, you receive the real package. " +
|
|
5
|
+
"https://slidphilabs.vercel.app/access";
|
|
6
|
+
function blocked() { throw new Error(MSG); }
|
|
7
|
+
export const encode = blocked;
|
|
8
|
+
export const decode = blocked;
|
|
9
|
+
export const encodeHybrid = blocked;
|
|
10
|
+
export const decodeHybrid = blocked;
|
|
11
|
+
export const OMNI_META = { stub: true, access: "https://slidphilabs.vercel.app/access" };
|
|
12
|
+
export default { encode, decode, encodeHybrid, decodeHybrid, OMNI_META };
|
|
13
|
+
console.warn("[SlidPhiLabs] Stub — no codec source. → https://slidphilabs.vercel.app/access");
|