@breadstone/archipel-platform-authentication 0.0.4 → 0.0.5
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.
- package/package.json +48 -27
package/package.json
CHANGED
|
@@ -1,10 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/archipel-platform-authentication",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.5",
|
|
4
4
|
"description": "JWT and OAuth authentication, MFA, session management, and email verification for NestJS applications.",
|
|
5
5
|
"type": "commonjs",
|
|
6
6
|
"main": "./src/index.js",
|
|
7
7
|
"types": "./src/index.d.ts",
|
|
8
|
+
"exports": {
|
|
9
|
+
".": {
|
|
10
|
+
"types": "./src/index.d.ts",
|
|
11
|
+
"default": "./src/index.js"
|
|
12
|
+
},
|
|
13
|
+
"./apple": {
|
|
14
|
+
"types": "./src/apple/index.d.ts",
|
|
15
|
+
"default": "./src/apple/index.js"
|
|
16
|
+
},
|
|
17
|
+
"./github": {
|
|
18
|
+
"types": "./src/github/index.d.ts",
|
|
19
|
+
"default": "./src/github/index.js"
|
|
20
|
+
},
|
|
21
|
+
"./google": {
|
|
22
|
+
"types": "./src/google/index.d.ts",
|
|
23
|
+
"default": "./src/google/index.js"
|
|
24
|
+
},
|
|
25
|
+
"./microsoft": {
|
|
26
|
+
"types": "./src/microsoft/index.d.ts",
|
|
27
|
+
"default": "./src/microsoft/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./package.json": "./package.json",
|
|
30
|
+
"./apple/index": "./src/apple/index.js",
|
|
31
|
+
"./github/index": "./src/github/index.js",
|
|
32
|
+
"./google/index": "./src/google/index.js",
|
|
33
|
+
"./microsoft/index": "./src/microsoft/index.js"
|
|
34
|
+
},
|
|
8
35
|
"license": "MIT",
|
|
9
36
|
"repository": {
|
|
10
37
|
"type": "git",
|
|
@@ -30,27 +57,27 @@
|
|
|
30
57
|
"README.md"
|
|
31
58
|
],
|
|
32
59
|
"dependencies": {
|
|
33
|
-
"@breadstone/archipel-platform-core": "0.0.
|
|
34
|
-
"@nestjs/common": "11.1.19",
|
|
35
|
-
"@nestjs/core": "11.1.19",
|
|
36
|
-
"@nestjs/jwt": "11.0.2",
|
|
37
|
-
"@nestjs/passport": "11.0.5",
|
|
38
|
-
"@nestjs/swagger": "11.3.0",
|
|
39
|
-
"class-transformer": "0.5.1",
|
|
40
|
-
"class-validator": "0.15.1",
|
|
41
|
-
"express": "5.2.1",
|
|
60
|
+
"@breadstone/archipel-platform-core": "0.0.5",
|
|
42
61
|
"passport": "0.7.0",
|
|
43
62
|
"passport-custom": "1.1.1",
|
|
44
63
|
"passport-jwt": "4.0.1",
|
|
45
64
|
"passport-local": "1.0.0",
|
|
46
|
-
"rxjs": "7.8.2",
|
|
47
65
|
"tslib": "2.8.1"
|
|
48
66
|
},
|
|
49
67
|
"peerDependencies": {
|
|
68
|
+
"@nestjs/common": ">=11.0.0",
|
|
69
|
+
"@nestjs/core": ">=11.0.0",
|
|
70
|
+
"@nestjs/jwt": ">=11.0.0",
|
|
71
|
+
"@nestjs/passport": ">=11.0.0",
|
|
72
|
+
"@nestjs/swagger": ">=11.0.0",
|
|
73
|
+
"class-transformer": ">=0.5.0",
|
|
74
|
+
"class-validator": ">=0.14.0",
|
|
75
|
+
"express": ">=5.0.0",
|
|
50
76
|
"passport-apple": "^2.0.2",
|
|
51
77
|
"passport-github2": "^0.1.12",
|
|
52
78
|
"passport-google-oauth20": "^2.0.0",
|
|
53
|
-
"passport-microsoft": "^2.1.0"
|
|
79
|
+
"passport-microsoft": "^2.1.0",
|
|
80
|
+
"rxjs": ">=7.0.0"
|
|
54
81
|
},
|
|
55
82
|
"peerDependenciesMeta": {
|
|
56
83
|
"passport-apple": {
|
|
@@ -67,6 +94,11 @@
|
|
|
67
94
|
}
|
|
68
95
|
},
|
|
69
96
|
"devDependencies": {
|
|
97
|
+
"@nestjs/common": "11.1.19",
|
|
98
|
+
"@nestjs/core": "11.1.19",
|
|
99
|
+
"@nestjs/jwt": "11.0.2",
|
|
100
|
+
"@nestjs/passport": "11.0.5",
|
|
101
|
+
"@nestjs/swagger": "11.3.0",
|
|
70
102
|
"@types/passport-apple": "2.0.3",
|
|
71
103
|
"@types/passport-github2": "1.2.9",
|
|
72
104
|
"@types/passport-google-oauth20": "2.0.17",
|
|
@@ -74,21 +106,10 @@
|
|
|
74
106
|
"@types/passport-local": "1.0.38",
|
|
75
107
|
"@types/passport-microsoft": "2.1.1",
|
|
76
108
|
"@types/qrcode": "1.5.6",
|
|
109
|
+
"class-transformer": "0.5.1",
|
|
110
|
+
"class-validator": "0.15.1",
|
|
111
|
+
"express": "5.2.1",
|
|
112
|
+
"rxjs": "7.8.2",
|
|
77
113
|
"vitest": "4.1.4"
|
|
78
|
-
},
|
|
79
|
-
"exports": {
|
|
80
|
-
"./package.json": "./package.json",
|
|
81
|
-
".": {
|
|
82
|
-
"types": "./src/index.d.ts",
|
|
83
|
-
"default": "./src/index.js"
|
|
84
|
-
},
|
|
85
|
-
"./apple": "./src/apple/index.js",
|
|
86
|
-
"./apple/index": "./src/apple/index.js",
|
|
87
|
-
"./github": "./src/github/index.js",
|
|
88
|
-
"./github/index": "./src/github/index.js",
|
|
89
|
-
"./google": "./src/google/index.js",
|
|
90
|
-
"./google/index": "./src/google/index.js",
|
|
91
|
-
"./microsoft": "./src/microsoft/index.js",
|
|
92
|
-
"./microsoft/index": "./src/microsoft/index.js"
|
|
93
114
|
}
|
|
94
115
|
}
|