strapi-plugin-oidc 1.8.4 → 1.9.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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "strapi-plugin-oidc",
3
- "version": "1.8.4",
3
+ "version": "1.9.0",
4
4
  "description": "A Strapi plugin that provides OpenID Connect (OIDC) authentication functionality for the Strapi Admin Panel.",
5
5
  "strapi": {
6
6
  "displayName": "OIDC Plugin",
@@ -13,7 +13,9 @@
13
13
  "watch": "strapi-plugin watch",
14
14
  "watch:link": "strapi-plugin watch:link",
15
15
  "verify": "strapi-plugin verify",
16
- "test": "vitest run -c vitest.config.e2e.ts",
16
+ "test": "vitest run -c vitest.config.unit.ts && vitest run -c vitest.config.e2e.ts",
17
+ "typecheck": "tsc --noEmit",
18
+ "test:unit": "vitest run -c vitest.config.unit.ts",
17
19
  "lint": "eslint",
18
20
  "fallow:check": "fallow",
19
21
  "fallow:fix": "fallow fix --yes",
@@ -53,7 +55,8 @@
53
55
  "jose": "^6.2.2",
54
56
  "lucide-react": "^1.8.0",
55
57
  "pkce-challenge": "^6.0.0",
56
- "react-intl": "^6.8.9"
58
+ "react-intl": "^6.8.9",
59
+ "zod": "^3.25.76"
57
60
  },
58
61
  "author": {
59
62
  "name": "edmogeor",
@@ -80,11 +83,13 @@
80
83
  ],
81
84
  "license": "MIT",
82
85
  "devDependencies": {
83
- "@eslint/eslintrc": "^3.3.5",
86
+ "vitest": "^4.1.2",
84
87
  "@eslint/js": "^10.0.1",
85
88
  "@strapi/sdk-plugin": "^6.0.1",
86
89
  "@types/node": "^25.5.2",
87
90
  "@types/supertest": "^7.2.0",
91
+ "@typescript-eslint/eslint-plugin": "^8.59.0",
92
+ "@typescript-eslint/parser": "^8.59.0",
88
93
  "@vitest/coverage-v8": "^4.1.2",
89
94
  "better-sqlite3": "^12.8.0",
90
95
  "dotenv": "^17.4.1",
@@ -98,8 +103,7 @@
98
103
  "react-router-dom": "^6.30.3",
99
104
  "styled-components": "^6.3.12",
100
105
  "supertest": "^7.2.2",
101
- "typescript": "^5.9.3",
102
- "vitest": "^4.1.2"
106
+ "typescript": "^5.9.3"
103
107
  },
104
108
  "exports": {
105
109
  "./package.json": "./package.json",