@h3ravel/config 1.0.0 → 1.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.
Files changed (3) hide show
  1. package/CHANGELOG.md +10 -0
  2. package/README.md +29 -0
  3. package/package.json +14 -4
package/CHANGELOG.md CHANGED
@@ -1,5 +1,15 @@
1
1
  # @h3ravel/config
2
2
 
3
+ ## 1.0.2
4
+
5
+ ### Patch Changes
6
+
7
+ - Updated dependencies [b0d1b7c]
8
+ - Updated dependencies [ce51a92]
9
+ - @h3ravel/support@0.7.0
10
+ - @h3ravel/shared@0.7.0
11
+ - @h3ravel/core@1.0.2
12
+
3
13
  ## 1.0.0
4
14
 
5
15
  ### Major Changes
package/README.md ADDED
@@ -0,0 +1,29 @@
1
+ <p align="center"><a href="https://h3ravel.toneflix.net" target="_blank"><img src="https://raw.githubusercontent.com/h3ravel/assets/refs/heads/main/logo-full.svg" width="400" alt="H3ravel Logo"></a></p>
2
+
3
+ [![Framework][ix]][lx]
4
+ [![Config Package Version][i1]][l1]
5
+
6
+ # About H3ravel/config
7
+
8
+ This package provides Config management and environment handling for the [H3ravel](https://h3ravel.toneflix.net) framework.
9
+
10
+ ## Contributing
11
+
12
+ Thank you for considering contributing to the H3ravel framework! The contribution guide can be found in the [H3ravel documentation](#!).
13
+
14
+ ## Code of Conduct
15
+
16
+ In order to ensure that the H3ravel community is welcoming to all, please review and abide by the [Code of Conduct](#).
17
+
18
+ ## Security Vulnerabilities
19
+
20
+ If you discover a security vulnerability within H3ravel, please send an e-mail to Legacy via hamzas.legacy@toneflix.ng. All security vulnerabilities will be promptly addressed.
21
+
22
+ ## License
23
+
24
+ The H3ravel framework is open-sourced software licensed under the [MIT license](LICENSE).
25
+
26
+ [ix]: https://img.shields.io/npm/v/%40h3ravel%2Fcore?style=flat-square&label=Framework&color=%230970ce
27
+ [lx]: https://www.npmjs.com/package/@h3ravel/core
28
+ [i1]: https://img.shields.io/npm/v/%40h3ravel%2Fconfig?style=flat-square&label=@h3ravel/config&color=%230970ce
29
+ [l1]: https://www.npmjs.com/package/@h3ravel/config
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@h3ravel/config",
3
- "version": "1.0.0",
3
+ "version": "1.0.2",
4
4
  "description": "Environment/config loading and management system for H3ravel.",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",
@@ -8,6 +8,16 @@
8
8
  "publishConfig": {
9
9
  "access": "public"
10
10
  },
11
+ "keywords": [
12
+ "h3ravel",
13
+ "modern",
14
+ "web",
15
+ "H3",
16
+ "framework",
17
+ "nodejs",
18
+ "typescript",
19
+ "laravel"
20
+ ],
11
21
  "exports": {
12
22
  ".": {
13
23
  "import": "./dist/index.js",
@@ -15,9 +25,9 @@
15
25
  }
16
26
  },
17
27
  "dependencies": {
18
- "@h3ravel/core": "1.0.0",
19
- "@h3ravel/support": "0.6.0",
20
- "@h3ravel/shared": "0.6.0"
28
+ "@h3ravel/shared": "0.7.0",
29
+ "@h3ravel/core": "1.0.2",
30
+ "@h3ravel/support": "0.7.0"
21
31
  },
22
32
  "devDependencies": {
23
33
  "typescript": "^5.4.0",