@shoperzz/core 0.0.2 → 0.0.3-beta.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.
@@ -1,5 +1,5 @@
1
1
 
2
- > @shoperzz/core@0.0.1 build /home/runner/work/shoperzz/shoperzz/packages/core
2
+ > @shoperzz/core@0.0.3-beta.0 build /home/runner/work/shoperzz/shoperzz/packages/core
3
3
  > echo 'Skeleton release'
4
4
 
5
5
  Skeleton release
package/CHANGELOG.md CHANGED
@@ -1,6 +1,12 @@
1
1
  # @shoperzz/core
2
2
 
3
- ## 0.0.2
3
+ ## 0.0.3-beta.0
4
+
5
+ ### Patch Changes
6
+
7
+ - d19ddc9: stabilization of release infrastructure, documentation refinement and CI updates
8
+
9
+ ## 0.0.2-alpha.0
4
10
 
5
11
  ### Patch Changes
6
12
 
package/README.md CHANGED
@@ -1,15 +1,31 @@
1
- # @shoperzz/core
1
+ <div align="center">
2
+ <img src="../../assets/logos/LOGO-COLORED-SVG.svg" alt="Shoperzz" width="300" />
3
+ <br/>
4
+ <p>
5
+ <strong>@shoperzz/core</strong><br/>
6
+ The backbone of the Shoperzz headless e-commerce engine.
7
+ </p>
2
8
 
3
- > The central nervous system of the Shoperzz headless e-commerce framework.
9
+ <div>
10
+ <img src="https://img.shields.io/badge/NestJS-E0234E?style=flat-square&logo=nestjs&logoColor=white" alt="NestJS">
11
+ <img src="https://img.shields.io/badge/TypeScript-007ACC?style=flat-square&logo=typescript&logoColor=white" alt="TypeScript">
12
+ <img src="https://img.shields.io/badge/pnpm-F69220?style=flat-square&logo=pnpm&logoColor=white" alt="pnpm">
13
+ <img src="https://img.shields.io/npm/v/@shoperzz/core?style=flat-square&logo=npm&color=CB3837" alt="npm version">
14
+ </div>
15
+ </div>
4
16
 
5
- `@shoperzz/core` provides the foundational architecture for building highly scalable, plugin-based e-commerce systems. It orchestrates the lifecycle of the framework, manages the plugin registry, and provides the main event-driven engine.
17
+ <br/>
6
18
 
7
- ## Features
19
+ ## Narrative Synthesis
8
20
 
9
- - **Plugin Engine**: Dynamic loading and lifecycle management for Shoperzz extensions.
10
- - **Event Bus**: High-performance, typed communication layer for inter-module integration.
11
- - **Provider System**: Abstraction layer for data and service providers.
12
- - **Middleware Support**: Intercept and modify framework behavior at key injection points.
21
+ @shoperzz/core is the central nervous system of the Shoperzz framework. It orchestrates the business logic, service orchestration, and the high-performance bridging between NestJS and Vendure. Designed for the specificities of the African digital economy, it provides a "White-Box" architecture that is both robust and infinitely extensible.
22
+
23
+ ## Key Technical Capabilities
24
+
25
+ - **Service Orchestration**: Atomic management of complex e-commerce workflows (Orders, Payments, Logistics).
26
+ - **Plugin Architecture**: Seamless integration with the Shoperzz plugin ecosystem.
27
+ - **Security First**: Built-in protection against common vulnerabilities and transactional fraud.
28
+ - **African API Adapters**: Native handling of localization, currencies, and specialized regional services.
13
29
 
14
30
  ## Installation
15
31
 
@@ -17,13 +33,13 @@
17
33
  pnpm add @shoperzz/core
18
34
  ```
19
35
 
20
- ## Usage
36
+ ## Quick Start
21
37
 
22
38
  ```typescript
23
39
  import { ShoperzzCore } from "@shoperzz/core";
24
40
 
25
41
  const engine = new ShoperzzCore({
26
- // configuration
42
+ // Professional configuration
27
43
  });
28
44
 
29
45
  engine.bootstrap().then(() => {
@@ -31,6 +47,10 @@ engine.bootstrap().then(() => {
31
47
  });
32
48
  ```
33
49
 
34
- ## License
50
+ ## Governance
51
+
52
+ This package follows the Elite Release Protocol. Versions and tags are managed automatically by the Shoperzz Release Bot.
53
+
54
+ ---
35
55
 
36
- GPL-3.0-or-later © Shoperzz
56
+ [License: GPL-3.0-or-later](../../LICENSE.md) © Shoperzz
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shoperzz/core",
3
- "version": "0.0.2",
3
+ "version": "0.0.3-beta.0",
4
4
  "private": false,
5
5
  "license": "GPL-3.0-or-later",
6
6
  "publishConfig": {