@ecommaps/client 1.2.2 → 1.3.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/README.md +10 -0
- package/package.json +11 -3
package/README.md
CHANGED
|
@@ -129,6 +129,16 @@ To build a complete store:
|
|
|
129
129
|
|
|
130
130
|
---
|
|
131
131
|
|
|
132
|
+
## 🌍 Universal Compatibility
|
|
133
|
+
|
|
134
|
+
The Ecommaps SDK is built using standard Fetch API and is environment-agnostic. It works seamlessly across:
|
|
135
|
+
- **Web Frameworks**: React, Next.js, Vue, Nuxt, Svelte, Angular.
|
|
136
|
+
- **Mobile**: React Native, Expo, Ionic.
|
|
137
|
+
- **Server-side**: Node.js, Bun, Deno, Edge Functions (Vercel, Cloudflare).
|
|
138
|
+
- **AI Agents**: Highly optimized for AI-driven development and autonomous agents.
|
|
139
|
+
|
|
140
|
+
---
|
|
141
|
+
|
|
132
142
|
## 📄 License
|
|
133
143
|
|
|
134
144
|
Distributed under the ISC License. © 2026 ecommaps.com
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ecommaps/client",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.3.1",
|
|
4
4
|
"description": "The official JS SDK for Ecommaps Headless Storefronts.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"module": "dist/index.mjs",
|
|
@@ -16,6 +16,14 @@
|
|
|
16
16
|
"tsup": "^8.0.2",
|
|
17
17
|
"typescript": "^5.4.5"
|
|
18
18
|
},
|
|
19
|
-
"author": "
|
|
20
|
-
"license": "ISC"
|
|
19
|
+
"author": "labobankcom",
|
|
20
|
+
"license": "ISC",
|
|
21
|
+
"repository": {
|
|
22
|
+
"type": "git",
|
|
23
|
+
"url": "https://github.com/labobankcom/ecommaps-js-sdk.git"
|
|
24
|
+
},
|
|
25
|
+
"publishConfig": {
|
|
26
|
+
"access": "public",
|
|
27
|
+
"registry": "https://registry.npmjs.org/"
|
|
28
|
+
}
|
|
21
29
|
}
|