@shoperzz/core 0.0.1 → 0.0.2

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/CHANGELOG.md CHANGED
@@ -1,5 +1,12 @@
1
1
  # @shoperzz/core
2
2
 
3
+ ## 0.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - 7135ca9: docs(monorepo): professionalize package READMEs and finalize unified release infrastructure
8
+ - fd02ee3: docs(monorepo): align package licenses with GPL-3.0 standards
9
+
3
10
  ## 0.0.1
4
11
 
5
12
  ### Patch Changes
package/README.md CHANGED
@@ -1,14 +1,36 @@
1
- # Core (@shoperzz/core)
1
+ # @shoperzz/core
2
2
 
3
- The brain of Shoperzz. A headless package based on NestJS and Vendure.
3
+ > The central nervous system of the Shoperzz headless e-commerce framework.
4
4
 
5
- ## Responsibilities
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.
6
6
 
7
- - **Plugin Registry**: Dynamic loading and isolation of plugin modules.
8
- - **Event Bus**: Asynchronous messaging system for inter-plugin communication.
9
- - **Vendure Engine**: Integration and extension of the core commerce engine.
10
- - **GraphQL Schema**: Unification of Admin and Shop API schemas.
7
+ ## Features
11
8
 
12
- ## Role
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.
13
13
 
14
- It provides the API and business logic that everything else depends on.
14
+ ## Installation
15
+
16
+ ```bash
17
+ pnpm add @shoperzz/core
18
+ ```
19
+
20
+ ## Usage
21
+
22
+ ```typescript
23
+ import { ShoperzzCore } from "@shoperzz/core";
24
+
25
+ const engine = new ShoperzzCore({
26
+ // configuration
27
+ });
28
+
29
+ engine.bootstrap().then(() => {
30
+ console.log("Shoperzz Engine is running.");
31
+ });
32
+ ```
33
+
34
+ ## License
35
+
36
+ GPL-3.0-or-later © Shoperzz
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shoperzz/core",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "private": false,
5
5
  "license": "GPL-3.0-or-later",
6
6
  "publishConfig": {