@open-mercato/shared 0.4.5 → 0.4.6-canary-a140cfb135

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 ADDED
@@ -0,0 +1,28 @@
1
+ # @open-mercato/shared 🔧
2
+
3
+ The shared foundation for Open Mercato packages.
4
+
5
+ `@open-mercato/shared` provides cross-cutting utilities, contracts, DSL helpers, module registries, i18n helpers, and typed platform primitives.
6
+
7
+ ## Why this package ✨
8
+
9
+ - 🧱 Shared types and contracts used across the ecosystem
10
+ - 🌍 I18n and translation helpers for server and client
11
+ - 🧠 Data/query abstractions and platform-level utilities
12
+ - 🧩 Stable building blocks for custom modules and extensions
13
+
14
+ ## Install
15
+
16
+ ```bash
17
+ yarn add @open-mercato/shared
18
+ ```
19
+
20
+ ## Learn more
21
+
22
+ - GitHub (package): https://github.com/open-mercato/open-mercato/tree/main/packages/shared
23
+ - GitHub (project): https://github.com/open-mercato/open-mercato
24
+ - Docs: https://docs.openmercato.com
25
+
26
+ ## License
27
+
28
+ MIT
@@ -1,4 +1,4 @@
1
- const APP_VERSION = "0.4.5";
1
+ const APP_VERSION = "0.4.6-canary-a140cfb135";
2
2
  const appVersion = APP_VERSION;
3
3
  export {
4
4
  APP_VERSION,
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "version": 3,
3
3
  "sources": ["../../src/lib/version.ts"],
4
- "sourcesContent": ["// Build-time generated version\nexport const APP_VERSION = '0.4.5'\nexport const appVersion = APP_VERSION\n"],
4
+ "sourcesContent": ["// Build-time generated version\nexport const APP_VERSION = '0.4.6-canary-a140cfb135'\nexport const appVersion = APP_VERSION\n"],
5
5
  "mappings": "AACO,MAAM,cAAc;AACpB,MAAM,aAAa;",
6
6
  "names": []
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@open-mercato/shared",
3
- "version": "0.4.5",
3
+ "version": "0.4.6-canary-a140cfb135",
4
4
  "type": "module",
5
5
  "main": "./dist/index.js",
6
6
  "scripts": {
@@ -86,5 +86,6 @@
86
86
  },
87
87
  "publishConfig": {
88
88
  "access": "public"
89
- }
89
+ },
90
+ "stableVersion": "0.4.5"
90
91
  }