@medusajs/auth-oidc 2.18.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.
Files changed (2) hide show
  1. package/LICENSE +32 -0
  2. package/package.json +44 -0
package/LICENSE ADDED
@@ -0,0 +1,32 @@
1
+ Medusa Enterprise Edition License
2
+
3
+ Copyright (c) 2026 MedusaJS, Inc. All rights reserved.
4
+
5
+ This package is part of the Medusa Enterprise Edition and is proprietary
6
+ software. It is not licensed under the MIT License that applies to Medusa's
7
+ open-source core.
8
+
9
+ You may use, reproduce, modify, distribute, or otherwise exploit this software
10
+ only under a separate, valid commercial agreement with MedusaJS, Inc. that
11
+ expressly grants those rights. Possession of or access to the source code does
12
+ not grant a license. If you do not have such an agreement, no rights are
13
+ granted except those that cannot lawfully be restricted.
14
+
15
+ The terms of an applicable commercial agreement control if they conflict with
16
+ this notice. To obtain a commercial license, contact Medusa through
17
+ https://medusajs.com/enterprise/.
18
+
19
+ This notice applies prospectively and does not withdraw rights already granted
20
+ for earlier versions of this software under the MIT License.
21
+
22
+ THE SOFTWARE IS PROVIDED "AS IS" TO THE MAXIMUM EXTENT PERMITTED BY LAW,
23
+ UNLESS A COMMERCIAL AGREEMENT EXPRESSLY STATES OTHERWISE. MEDUSAJS, INC.
24
+ DISCLAIMS ALL WARRANTIES, WHETHER EXPRESS, IMPLIED, OR STATUTORY, INCLUDING
25
+ MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND
26
+ NON-INFRINGEMENT. TO THE MAXIMUM EXTENT PERMITTED BY LAW, MEDUSAJS, INC. WILL
27
+ NOT BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, CONSEQUENTIAL, OR
28
+ PUNITIVE DAMAGES, OR ANY LOSS OF DATA, PROFITS, REVENUE, OR BUSINESS, ARISING
29
+ FROM THE SOFTWARE.
30
+
31
+ The canonical repository-level notice and complete scope definition are in
32
+ `ENTERPRISE-LICENSE.md` at the root of the Medusa repository.
package/package.json ADDED
@@ -0,0 +1,44 @@
1
+ {
2
+ "name": "@medusajs/auth-oidc",
3
+ "version": "2.18.0",
4
+ "description": "Generic OpenID Connect (OIDC) authentication provider for Medusa",
5
+ "main": "dist/index.js",
6
+ "repository": {
7
+ "type": "git",
8
+ "url": "git+https://github.com/medusajs/medusa.git",
9
+ "directory": "packages/modules/providers/auth-oidc"
10
+ },
11
+ "bugs": {
12
+ "url": "https://github.com/medusajs/medusa/issues"
13
+ },
14
+ "files": [
15
+ "dist",
16
+ "!dist/**/__tests__",
17
+ "!dist/**/__mocks__",
18
+ "!dist/**/__fixtures__"
19
+ ],
20
+ "engines": {
21
+ "node": ">=20"
22
+ },
23
+ "author": "Medusa",
24
+ "license": "SEE LICENSE IN LICENSE",
25
+ "scripts": {
26
+ "test": "../../../../node_modules/.bin/jest --passWithNoTests src",
27
+ "test:integration": "../../../../node_modules/.bin/jest --passWithNoTests --forceExit --testPathPattern=\"integration-tests/__tests__/.*\\.spec\\.ts\"",
28
+ "build": "yarn run -T rimraf dist && yarn run -T tsc --build",
29
+ "watch": "yarn run -T tsc --watch"
30
+ },
31
+ "dependencies": {
32
+ "openid-client": "^5.7.1"
33
+ },
34
+ "devDependencies": {
35
+ "@medusajs/framework": "2.18.0"
36
+ },
37
+ "peerDependencies": {
38
+ "@medusajs/framework": "2.18.0"
39
+ },
40
+ "keywords": [
41
+ "medusa-provider",
42
+ "medusa-provider-auth-oidc"
43
+ ]
44
+ }