ravcredit-core 0.0.2 → 0.0.3

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 +30 -0
  2. package/package.json +1 -1
package/README.md ADDED
@@ -0,0 +1,30 @@
1
+ # ravcredit-core
2
+
3
+ Core TypeScript library for front-end development.
4
+
5
+ This package centralizes **base objects**, **constants**, and **enums** used across Ravcredit front-end projects, so apps can share the same data models and avoid duplicating definitions.
6
+
7
+ ## What’s inside
8
+
9
+ - **Base objects / DTO-like models** (typed object structures used by apps)
10
+ - **Constants & messages** (shared literals, keys, and text)
11
+ - **Enums** (shared status/types used across the UI and API integration)
12
+ - Versioned modules:
13
+ - `src/lib/v1/*`
14
+ - `src/lib/v2/*`
15
+
16
+ ## Project structure (high level)
17
+
18
+ - `src/index.ts` — library entry point (public exports)
19
+ - `src/lib/v1/` — legacy / v1 contracts (constants + objects)
20
+ - `src/lib/v2/` — current / v2 contracts (constants, enums, objects, utils)
21
+ - `dist/` — build output (generated)
22
+
23
+ ## Requirements
24
+
25
+ - Node.js (LTS recommended)
26
+ - npm
27
+
28
+ ## Install
29
+
30
+ ### As a dependency (recommended for app projects)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ravcredit-core",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "type": "module",
5
5
  "exports": {
6
6
  ".": {