@djodjonx/wiredi 0.0.2 → 0.0.8

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 +5 -5
  2. package/package.json +14 -6
package/README.md CHANGED
@@ -1,11 +1,11 @@
1
1
  <p align="center">
2
- <img src="logo/wiredi-banner-dark.svg" alt="WireDI" width="600">
2
+ <img src="https://raw.githubusercontent.com/djodjonx/wireDI/main/logo/logo.png" alt="WireDI" width="600">
3
3
  </p>
4
4
 
5
5
  <p align="center">
6
6
  <a href="https://www.npmjs.com/package/@djodjonx/wiredi"><img src="https://img.shields.io/npm/v/@djodjonx/wiredi.svg?style=flat-square" alt="npm version"></a>
7
- <a href="https://djodjonx.github.io/wiredi/"><img src="https://img.shields.io/badge/docs-GitHub%20Pages-blue?style=flat-square" alt="Documentation"></a>
8
- <a href="https://github.com/djodjonx/wiredi/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/djodjonx/wiredi/ci.yml?style=flat-square" alt="CI"></a>
7
+ <a href="https://djodjonx.github.io/wireDI/"><img src="https://img.shields.io/badge/docs-GitHub%20Pages-blue?style=flat-square" alt="Documentation"></a>
8
+ <a href="https://github.com/djodjonx/wireDI/actions/workflows/ci.yml"><img src="https://img.shields.io/github/actions/workflow/status/djodjonx/wireDI/ci.yml?style=flat-square" alt="CI"></a>
9
9
  <a href="https://www.typescriptlang.org/"><img src="https://img.shields.io/badge/TypeScript-5.0+-blue.svg?style=flat-square" alt="TypeScript"></a>
10
10
  <a href="https://opensource.org/licenses/MIT"><img src="https://img.shields.io/badge/License-MIT-yellow.svg?style=flat-square" alt="License: MIT"></a>
11
11
  </p>
@@ -27,7 +27,7 @@
27
27
 
28
28
  ## 📚 Documentation
29
29
 
30
- - **[Full API Documentation](https://djodjonx.github.io/wiredi/)** - Complete TypeDoc API reference
30
+ - **[Full API Documentation](https://djodjonx.github.io/wireDI/)** - Complete TypeDoc API reference
31
31
  - **[Getting Started Guide](#quick-start)** - Start using WireDI in 5 minutes
32
32
  - **[Examples](./examples)** - Real-world integration examples
33
33
 
@@ -483,7 +483,7 @@ getEventDispatcherProvider().dispatch(new UserCreatedEvent(user))
483
483
 
484
484
  Full API documentation is available online and can be generated locally:
485
485
 
486
- **Online**: [View API Documentation](https://[your-username].github.io/WireDI/) *(configure GitHub Pages)*
486
+ **Online**: [View API Documentation](https://djodjonx.github.io/wireDI/) *(GitHub Pages)*
487
487
 
488
488
  **Generate locally**:
489
489
  ```bash
package/package.json CHANGED
@@ -1,16 +1,21 @@
1
1
  {
2
2
  "name": "@djodjonx/wiredi",
3
- "version": "0.0.2",
3
+ "version": "0.0.8",
4
4
  "description": "WireDI - Wire your dependency injection with type safety and compile-time validation",
5
5
  "type": "module",
6
- "main": "dist/index.js",
6
+ "main": "dist/index.cjs",
7
7
  "module": "dist/index.mjs",
8
- "types": "dist/index.d.ts",
8
+ "types": "dist/index.d.mts",
9
9
  "exports": {
10
10
  ".": {
11
- "import": "./dist/index.mjs",
12
- "require": "./dist/index.js",
13
- "types": "./dist/index.d.ts"
11
+ "import": {
12
+ "types": "./dist/index.d.mts",
13
+ "default": "./dist/index.mjs"
14
+ },
15
+ "require": {
16
+ "types": "./dist/index.d.cts",
17
+ "default": "./dist/index.cjs"
18
+ }
14
19
  },
15
20
  "./plugin": {
16
21
  "require": "./dist/plugin/index.js",
@@ -55,6 +60,9 @@
55
60
  ],
56
61
  "author": "",
57
62
  "license": "MIT",
63
+ "engines": {
64
+ "node": ">=20.12.0"
65
+ },
58
66
  "publishConfig": {
59
67
  "access": "public"
60
68
  },