@tsed/oidc-provider 8.3.0 → 8.3.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.
- package/package.json +15 -15
- package/readme.md +4 -6
package/package.json
CHANGED
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
"name": "@tsed/oidc-provider",
|
|
3
3
|
"description": "OIDC provider package for Ts.ED framework",
|
|
4
4
|
"type": "module",
|
|
5
|
-
"version": "8.3.
|
|
5
|
+
"version": "8.3.1",
|
|
6
6
|
"source": "./src/index.ts",
|
|
7
7
|
"main": "./lib/esm/index.js",
|
|
8
8
|
"module": "./lib/esm/index.js",
|
|
@@ -24,7 +24,7 @@
|
|
|
24
24
|
"test:ci": "vitest run --coverage.thresholds.autoUpdate=true"
|
|
25
25
|
},
|
|
26
26
|
"dependencies": {
|
|
27
|
-
"@tsed/adapters": "8.3.
|
|
27
|
+
"@tsed/adapters": "8.3.1",
|
|
28
28
|
"express-urlrewrite": "^2.0.3",
|
|
29
29
|
"jose2": "npm:jose@^2.0.4",
|
|
30
30
|
"koa-mount": "^4.0.0",
|
|
@@ -34,13 +34,13 @@
|
|
|
34
34
|
"uuid": "^10.0.0"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@tsed/barrels": "8.3.
|
|
38
|
-
"@tsed/core": "8.3.
|
|
39
|
-
"@tsed/di": "8.3.
|
|
40
|
-
"@tsed/exceptions": "8.3.
|
|
41
|
-
"@tsed/jwks": "8.3.
|
|
42
|
-
"@tsed/platform-http": "8.3.
|
|
43
|
-
"@tsed/typescript": "8.3.
|
|
37
|
+
"@tsed/barrels": "8.3.1",
|
|
38
|
+
"@tsed/core": "8.3.1",
|
|
39
|
+
"@tsed/di": "8.3.1",
|
|
40
|
+
"@tsed/exceptions": "8.3.1",
|
|
41
|
+
"@tsed/jwks": "8.3.1",
|
|
42
|
+
"@tsed/platform-http": "8.3.1",
|
|
43
|
+
"@tsed/typescript": "8.3.1",
|
|
44
44
|
"@types/lowdb": "1.0.15",
|
|
45
45
|
"@types/oidc-provider": "8.5.2",
|
|
46
46
|
"@types/uuid": "10.0.0",
|
|
@@ -52,12 +52,12 @@
|
|
|
52
52
|
"vitest": "2.1.2"
|
|
53
53
|
},
|
|
54
54
|
"peerDependencies": {
|
|
55
|
-
"@tsed/ajv": "8.3.
|
|
56
|
-
"@tsed/core": "8.3.
|
|
57
|
-
"@tsed/di": "8.3.
|
|
58
|
-
"@tsed/json-mapper": "8.3.
|
|
59
|
-
"@tsed/platform-http": "8.3.
|
|
60
|
-
"@tsed/schema": "8.3.
|
|
55
|
+
"@tsed/ajv": "8.3.1",
|
|
56
|
+
"@tsed/core": "8.3.1",
|
|
57
|
+
"@tsed/di": "8.3.1",
|
|
58
|
+
"@tsed/json-mapper": "8.3.1",
|
|
59
|
+
"@tsed/platform-http": "8.3.1",
|
|
60
|
+
"@tsed/schema": "8.3.1",
|
|
61
61
|
"oidc-provider": ">=8.0.0"
|
|
62
62
|
},
|
|
63
63
|
"peerDependenciesMeta": {
|
package/readme.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<p style="text-align: center" align="center">
|
|
2
|
-
<a href="https://tsed.
|
|
2
|
+
<a href="https://tsed.dev" target="_blank"><img src="https://tsed.dev/tsed-og.png" width="200" alt="Ts.ED logo"/></a>
|
|
3
3
|
</p>
|
|
4
4
|
|
|
5
5
|
<div align="center">
|
|
@@ -16,9 +16,9 @@
|
|
|
16
16
|
</div>
|
|
17
17
|
|
|
18
18
|
<div align="center">
|
|
19
|
-
<a href="https://tsed.
|
|
19
|
+
<a href="https://tsed.dev/">Website</a>
|
|
20
20
|
<span> • </span>
|
|
21
|
-
<a href="https://tsed.
|
|
21
|
+
<a href="https://tsed.dev/getting-started/">Getting started</a>
|
|
22
22
|
<span> • </span>
|
|
23
23
|
<a href="https://slack.tsed.io">Slack</a>
|
|
24
24
|
<span> • </span>
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
|
|
28
28
|
<hr />
|
|
29
29
|
|
|
30
|
-
A package of Ts.ED framework. See website: https://tsed.
|
|
30
|
+
A package of Ts.ED framework. See website: https://tsed.dev/tutorials/oidc-provider
|
|
31
31
|
|
|
32
32
|
## OIDC compatibility
|
|
33
33
|
|
|
@@ -96,8 +96,6 @@ export class Server {}
|
|
|
96
96
|
|
|
97
97
|
## Contributors
|
|
98
98
|
|
|
99
|
-
Please read [contributing guidelines here](https://tsed.io/contributing.html)
|
|
100
|
-
|
|
101
99
|
<a href="https://github.com/tsedio/tsed/graphs/contributors"><img src="https://opencollective.com/tsed/contributors.svg?width=890" /></a>
|
|
102
100
|
|
|
103
101
|
## Backers
|