@ooneex/repository 0.0.18 → 1.0.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.
Files changed (2) hide show
  1. package/README.md +1 -19
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -1,11 +1,9 @@
1
1
  # @ooneex/repository
2
2
 
3
- A base repository decorator and interface for data access layer abstraction in TypeScript applications. This package provides the foundation for creating injectable repository classes with dependency injection support, standardized CRUD operations, and paginated query results.
3
+ Data access layer with decorator-based repository registration, query abstraction, and dependency injection for clean persistence patterns.
4
4
 
5
5
  ![Browser](https://img.shields.io/badge/Browser-Compatible-green?style=flat-square&logo=googlechrome)
6
6
  ![Bun](https://img.shields.io/badge/Bun-Compatible-orange?style=flat-square&logo=bun)
7
- ![Deno](https://img.shields.io/badge/Deno-Compatible-blue?style=flat-square&logo=deno)
8
- ![Node.js](https://img.shields.io/badge/Node.js-Compatible-green?style=flat-square&logo=node.js)
9
7
  ![TypeScript](https://img.shields.io/badge/TypeScript-Ready-blue?style=flat-square&logo=typescript)
10
8
  ![MIT License](https://img.shields.io/badge/License-MIT-yellow?style=flat-square)
11
9
 
@@ -27,26 +25,10 @@ A base repository decorator and interface for data access layer abstraction in T
27
25
 
28
26
  ## Installation
29
27
 
30
- ### Bun
31
28
  ```bash
32
29
  bun add @ooneex/repository
33
30
  ```
34
31
 
35
- ### pnpm
36
- ```bash
37
- pnpm add @ooneex/repository
38
- ```
39
-
40
- ### Yarn
41
- ```bash
42
- yarn add @ooneex/repository
43
- ```
44
-
45
- ### npm
46
- ```bash
47
- npm install @ooneex/repository
48
- ```
49
-
50
32
  ## Usage
51
33
 
52
34
  ### Basic Repository
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ooneex/repository",
3
- "description": "Base repository classes and decorators for data access layer with dependency injection support",
4
- "version": "0.0.18",
3
+ "description": "Data access layer with decorator-based repository registration, query abstraction, and dependency injection for clean persistence patterns",
4
+ "version": "1.0.1",
5
5
  "type": "module",
6
6
  "files": [
7
7
  "dist",
@@ -25,13 +25,13 @@
25
25
  "test": "bun test tests",
26
26
  "build": "bunup",
27
27
  "lint": "tsgo --noEmit && bunx biome lint",
28
- "npm:publish": "bun publish --tolerate-republish --access public"
28
+ "npm:publish": "bun publish --tolerate-republish --force --production --access public"
29
29
  },
30
30
  "dependencies": {
31
- "@ooneex/container": "0.0.18"
31
+ "@ooneex/container": "1.0.1"
32
32
  },
33
33
  "devDependencies": {
34
- "@ooneex/types": "0.0.17"
34
+ "@ooneex/types": "1.0.1"
35
35
  },
36
36
  "keywords": [
37
37
  "bun",