@lacspace/connectips 1.0.0 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +10 -2
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -99,11 +99,19 @@ const token = await signToken(params, privateKeyPem); // base64 RSA-SHA256 signa
99
99
  - Keep your **RSA private key** on the server only — never ship it to the browser.
100
100
  - The signed message must match Connect IPS's expected field order exactly; this package builds it for you.
101
101
 
102
+ ## Licensing
103
+
104
+ This package is **free** under the **[Lacspace Free Licence](https://developer.lacspace.com/licenses/lacspace-free-1.0)** — permissive freedoms. Use it in personal and commercial projects at no cost; just keep the notice.
105
+
106
+ Not every Lacspace package is free. We also offer **Commercial** (paid), **Client-specific**, and **Private** (proprietary) packages under separate terms. See the full **[Lacspace Licence Centre](https://developer.lacspace.com/licenses)**.
107
+
108
+ <!-- LACSPACE-DEV-PLATFORM -->
109
+
102
110
  ---
103
111
 
104
112
  ## The Lacspace Developer Platform
105
113
 
106
- `@lacspace/connectips` is part of **63+ zero-dependency, isomorphic TypeScript packages**. Explore the ecosystem:
114
+ `@lacspace/connectips` is part of **80+ zero-dependency, isomorphic TypeScript packages**. Explore the ecosystem:
107
115
 
108
116
  - 🗂️ **All packages** — https://developer.lacspace.com/packages
109
117
  - 🧭 **Developer handbook** — https://developer.lacspace.com/handbook
@@ -111,4 +119,4 @@ const token = await signToken(params, privateKeyPem); // base64 RSA-SHA256 signa
111
119
  - 🖥️ **Finished app templates** — https://templates.lacspace.com
112
120
  - 🚀 **Scaffold a full app** — `npm create lacspace-app@latest`
113
121
 
114
- Free under the **[Lacspace Free Licence](https://lacspace.com/licenses/lacspace-free-1.0)** — a permissive, free-to-use licence.
122
+ Free under the **[Lacspace Free Licence](https://developer.lacspace.com/licenses/lacspace-free-1.0)** — a permissive, free-to-use licence.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lacspace/connectips",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Connect IPS (Nepal) merchant integration over Web Crypto — sign the redirect transaction token with your RSA private key and validate transactions server-to-server. Zero-dep, isomorphic (Node, edge, browser).",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",