@breadstone/archipel-platform-authentication 0.0.4 → 0.0.6
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 +64 -27
package/package.json
CHANGED
|
@@ -1,10 +1,53 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@breadstone/archipel-platform-authentication",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.6",
|
|
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
|
+
"typesVersions": {
|
|
9
|
+
"*": {
|
|
10
|
+
"apple": [
|
|
11
|
+
"./src/apple/index.d.ts"
|
|
12
|
+
],
|
|
13
|
+
"github": [
|
|
14
|
+
"./src/github/index.d.ts"
|
|
15
|
+
],
|
|
16
|
+
"google": [
|
|
17
|
+
"./src/google/index.d.ts"
|
|
18
|
+
],
|
|
19
|
+
"microsoft": [
|
|
20
|
+
"./src/microsoft/index.d.ts"
|
|
21
|
+
]
|
|
22
|
+
}
|
|
23
|
+
},
|
|
24
|
+
"exports": {
|
|
25
|
+
".": {
|
|
26
|
+
"types": "./src/index.d.ts",
|
|
27
|
+
"default": "./src/index.js"
|
|
28
|
+
},
|
|
29
|
+
"./apple": {
|
|
30
|
+
"types": "./src/apple/index.d.ts",
|
|
31
|
+
"default": "./src/apple/index.js"
|
|
32
|
+
},
|
|
33
|
+
"./github": {
|
|
34
|
+
"types": "./src/github/index.d.ts",
|
|
35
|
+
"default": "./src/github/index.js"
|
|
36
|
+
},
|
|
37
|
+
"./google": {
|
|
38
|
+
"types": "./src/google/index.d.ts",
|
|
39
|
+
"default": "./src/google/index.js"
|
|
40
|
+
},
|
|
41
|
+
"./microsoft": {
|
|
42
|
+
"types": "./src/microsoft/index.d.ts",
|
|
43
|
+
"default": "./src/microsoft/index.js"
|
|
44
|
+
},
|
|
45
|
+
"./package.json": "./package.json",
|
|
46
|
+
"./apple/index": "./src/apple/index.js",
|
|
47
|
+
"./github/index": "./src/github/index.js",
|
|
48
|
+
"./google/index": "./src/google/index.js",
|
|
49
|
+
"./microsoft/index": "./src/microsoft/index.js"
|
|
50
|
+
},
|
|
8
51
|
"license": "MIT",
|
|
9
52
|
"repository": {
|
|
10
53
|
"type": "git",
|
|
@@ -30,27 +73,27 @@
|
|
|
30
73
|
"README.md"
|
|
31
74
|
],
|
|
32
75
|
"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",
|
|
76
|
+
"@breadstone/archipel-platform-core": "0.0.6",
|
|
42
77
|
"passport": "0.7.0",
|
|
43
78
|
"passport-custom": "1.1.1",
|
|
44
79
|
"passport-jwt": "4.0.1",
|
|
45
80
|
"passport-local": "1.0.0",
|
|
46
|
-
"rxjs": "7.8.2",
|
|
47
81
|
"tslib": "2.8.1"
|
|
48
82
|
},
|
|
49
83
|
"peerDependencies": {
|
|
84
|
+
"@nestjs/common": ">=11.0.0",
|
|
85
|
+
"@nestjs/core": ">=11.0.0",
|
|
86
|
+
"@nestjs/jwt": ">=11.0.0",
|
|
87
|
+
"@nestjs/passport": ">=11.0.0",
|
|
88
|
+
"@nestjs/swagger": ">=11.0.0",
|
|
89
|
+
"class-transformer": ">=0.5.0",
|
|
90
|
+
"class-validator": ">=0.14.0",
|
|
91
|
+
"express": ">=5.0.0",
|
|
50
92
|
"passport-apple": "^2.0.2",
|
|
51
93
|
"passport-github2": "^0.1.12",
|
|
52
94
|
"passport-google-oauth20": "^2.0.0",
|
|
53
|
-
"passport-microsoft": "^2.1.0"
|
|
95
|
+
"passport-microsoft": "^2.1.0",
|
|
96
|
+
"rxjs": ">=7.0.0"
|
|
54
97
|
},
|
|
55
98
|
"peerDependenciesMeta": {
|
|
56
99
|
"passport-apple": {
|
|
@@ -67,6 +110,11 @@
|
|
|
67
110
|
}
|
|
68
111
|
},
|
|
69
112
|
"devDependencies": {
|
|
113
|
+
"@nestjs/common": "11.1.19",
|
|
114
|
+
"@nestjs/core": "11.1.19",
|
|
115
|
+
"@nestjs/jwt": "11.0.2",
|
|
116
|
+
"@nestjs/passport": "11.0.5",
|
|
117
|
+
"@nestjs/swagger": "11.3.0",
|
|
70
118
|
"@types/passport-apple": "2.0.3",
|
|
71
119
|
"@types/passport-github2": "1.2.9",
|
|
72
120
|
"@types/passport-google-oauth20": "2.0.17",
|
|
@@ -74,21 +122,10 @@
|
|
|
74
122
|
"@types/passport-local": "1.0.38",
|
|
75
123
|
"@types/passport-microsoft": "2.1.1",
|
|
76
124
|
"@types/qrcode": "1.5.6",
|
|
125
|
+
"class-transformer": "0.5.1",
|
|
126
|
+
"class-validator": "0.15.1",
|
|
127
|
+
"express": "5.2.1",
|
|
128
|
+
"rxjs": "7.8.2",
|
|
77
129
|
"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
130
|
}
|
|
94
131
|
}
|