@bhandari88/express-auth 1.0.1 → 1.1.0

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 -0
  2. package/package.json +5 -5
package/README.md CHANGED
@@ -10,6 +10,11 @@ npm install @bhandari88/express-auth
10
10
 
11
11
  **Package URL**: [https://www.npmjs.com/package/@bhandari88/express-auth](https://www.npmjs.com/package/@bhandari88/express-auth)
12
12
 
13
+
14
+ ## Example
15
+
16
+ ***Example Application**: [https://github.com/manojsinghindiit/auth-boiler-example](https://github.com/manojsinghindiit/auth-boiler-example)
17
+
13
18
  ## Features
14
19
 
15
20
  - ✅ **Multiple Authentication Methods**
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@bhandari88/express-auth",
3
- "version": "1.0.1",
3
+ "version": "1.1.0",
4
4
  "description": "Plug-and-play authentication handler for Express.js with TypeScript supporting email, username, phone, and social login",
5
5
  "main": "dist/index.js",
6
6
  "types": "dist/index.d.ts",
@@ -23,19 +23,19 @@
23
23
  "dependencies": {
24
24
  "jsonwebtoken": "^9.0.2",
25
25
  "passport": "^0.7.0",
26
- "passport-google-oauth20": "^2.0.0",
27
26
  "passport-facebook": "^3.0.0",
27
+ "passport-google-oauth20": "^2.0.0",
28
28
  "validator": "^13.11.0"
29
29
  },
30
30
  "devDependencies": {
31
31
  "@types/express": "^4.17.21",
32
32
  "@types/jsonwebtoken": "^9.0.5",
33
+ "@types/node": "^20.10.5",
33
34
  "@types/passport": "^1.0.16",
34
- "@types/passport-google-oauth20": "^2.0.14",
35
35
  "@types/passport-facebook": "^3.0.3",
36
+ "@types/passport-google-oauth20": "^2.0.14",
36
37
  "@types/validator": "^13.11.7",
37
- "@types/node": "^20.10.5",
38
- "typescript": "^5.3.3"
38
+ "typescript": "^5.9.3"
39
39
  },
40
40
  "peerDependencies": {
41
41
  "express": "^4.18.0"