strapi-plugin-oidc 1.0.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 ADDED
@@ -0,0 +1,107 @@
1
+ {
2
+ "name": "strapi-plugin-oidc",
3
+ "version": "1.0.0",
4
+ "description": "OIDC plugin for Strapi!",
5
+ "strapi": {
6
+ "displayName": "OIDC Plugin",
7
+ "name": "strapi-plugin-oidc",
8
+ "description": "Provides OIDC middleware for Strapi instances",
9
+ "kind": "plugin"
10
+ },
11
+ "scripts": {
12
+ "build": "strapi-plugin build",
13
+ "watch": "strapi-plugin watch",
14
+ "watch:link": "strapi-plugin watch:link",
15
+ "verify": "strapi-plugin verify",
16
+ "test": "vitest run -c vitest.config.e2e.ts",
17
+ "lint": "eslint",
18
+ "prepare": "husky"
19
+ },
20
+ "lint-staged": {
21
+ "*.{js,ts,tsx,jsx,json,md,yml,yaml}": [
22
+ "prettier --write"
23
+ ]
24
+ },
25
+ "keywords": [
26
+ "strapi",
27
+ "plugin",
28
+ "oauth",
29
+ "OIDC",
30
+ "Zitadel"
31
+ ],
32
+ "peerDependencies": {
33
+ "@strapi/strapi": "^5.24.1"
34
+ },
35
+ "dependencies": {
36
+ "@strapi/design-system": "^2.2.0",
37
+ "@strapi/icons": "^2.2.0",
38
+ "@strapi/utils": "^5.41.1",
39
+ "axios": "^1.14.0",
40
+ "generate-password": "^1.7.1",
41
+ "pkce-challenge": "^6.0.0",
42
+ "react": "^18.3.1",
43
+ "react-dom": "^18.3.1",
44
+ "react-intl": "^6.8.9",
45
+ "react-router-dom": "^6.30.3",
46
+ "styled-components": "^6.3.12"
47
+ },
48
+ "author": {
49
+ "name": "edmogeor",
50
+ "url": "https://github.com/edmogeor/strapi-plugin-oidc"
51
+ },
52
+ "repository": {
53
+ "type": "git",
54
+ "url": "https://github.com/edmogeor/strapi-plugin-oidc"
55
+ },
56
+ "bugs": {
57
+ "url": "https://github.com/edmogeor/strapi-plugin-oidc/issues"
58
+ },
59
+ "maintainers": [
60
+ {
61
+ "name": "edmogeor"
62
+ }
63
+ ],
64
+ "engines": {
65
+ "node": ">=20.0.0 <=24.x.x",
66
+ "npm": ">=6.0.0"
67
+ },
68
+ "files": [
69
+ "dist"
70
+ ],
71
+ "license": "MIT",
72
+ "devDependencies": {
73
+ "@eslint/eslintrc": "^3.3.5",
74
+ "@eslint/js": "^10.0.1",
75
+ "@strapi/sdk-plugin": "^6.0.1",
76
+ "@strapi/typescript-utils": "^5.41.1",
77
+ "@types/node": "^25.5.2",
78
+ "@types/supertest": "^7.2.0",
79
+ "@vitest/coverage-v8": "^4.1.2",
80
+ "better-sqlite3": "^12.8.0",
81
+ "dotenv": "^17.4.1",
82
+ "eslint": "^10.2.0",
83
+ "globals": "^17.4.0",
84
+ "husky": "^9.1.7",
85
+ "lint-staged": "^16.4.0",
86
+ "msw": "^2.12.14",
87
+ "prettier": "^3.8.1",
88
+ "supertest": "^7.2.2",
89
+ "typescript": "^5.9.3",
90
+ "vitest": "^4.1.2"
91
+ },
92
+ "exports": {
93
+ "./package.json": "./package.json",
94
+ "./strapi-admin": {
95
+ "source": "./admin/src/index.js",
96
+ "import": "./dist/admin/index.mjs",
97
+ "require": "./dist/admin/index.js",
98
+ "default": "./dist/admin/index.js"
99
+ },
100
+ "./strapi-server": {
101
+ "source": "./server/index.js",
102
+ "import": "./dist/server/index.mjs",
103
+ "require": "./dist/server/index.js",
104
+ "default": "./dist/server/index.js"
105
+ }
106
+ }
107
+ }