mbkauthe 1.4.0 → 1.4.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.
@@ -0,0 +1,17 @@
1
+ # Package Information
2
+
3
+ This package is published on npm: [mbkauthe](https://www.npmjs.com/package/mbkauthe)
4
+
5
+ ## Installation
6
+
7
+ ```bash
8
+ npm install mbkauthe
9
+ ```
10
+
11
+ ## Version
12
+
13
+ Current Version: 1.4.1
14
+
15
+ ## Registry
16
+
17
+ Published to: npm Registry (https://registry.npmjs.org/)
@@ -18,7 +18,7 @@ jobs:
18
18
  - name: Checkout code
19
19
  uses: actions/checkout@v3
20
20
 
21
- - name: Setup Node.js
21
+ - name: Setup Node.js for npm
22
22
  uses: actions/setup-node@v3
23
23
  with:
24
24
  node-version: '18'
@@ -39,4 +39,16 @@ jobs:
39
39
  - name: Publish to npm
40
40
  run: npm publish
41
41
  env:
42
- NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
42
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
43
+
44
+ - name: Setup Node.js for GitHub Packages
45
+ uses: actions/setup-node@v3
46
+ with:
47
+ node-version: '18'
48
+ registry-url: 'https://npm.pkg.github.com'
49
+ scope: '@MIbnEKhalid'
50
+
51
+ - name: Publish to GitHub Packages
52
+ run: npm publish
53
+ env:
54
+ NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
package/docs/api.md CHANGED
@@ -836,6 +836,6 @@ For issues, questions, or contributions:
836
836
  ---
837
837
 
838
838
  **Last Updated:** November 17, 2025
839
- **Version:** 1.4.0
839
+ **Version:** 1.4.1
840
840
 
841
841
  [← Back to README](../README.md)
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "mbkauthe",
3
- "version": "1.4.0",
3
+ "version": "1.4.1",
4
4
  "description": "MBKTechStudio's reusable authentication system for Node.js applications.",
5
5
  "main": "index.js",
6
6
  "type": "module",
@@ -25,6 +25,9 @@
25
25
  "url": "https://github.com/MIbnEKhalid/mbkauthe/issues"
26
26
  },
27
27
  "homepage": "https://github.com/MIbnEKhalid/mbkauthe#readme",
28
+ "publishConfig": {
29
+ "registry": "https://registry.npmjs.org/"
30
+ },
28
31
  "dependencies": {
29
32
  "bcrypt": "^6.0.0",
30
33
  "cheerio": "^1.0.0",