oidcbridge 0.0.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/README.md +19 -0
- package/dist/index.d.ts +2 -0
- package/dist/index.js +2 -0
- package/package.json +20 -0
package/README.md
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
<div align="center">
|
|
2
|
+
|
|
3
|
+
# oidcbridge
|
|
4
|
+
|
|
5
|
+
### Framework-neutral primitives for bridging OpenID Connect providers to identity systems.
|
|
6
|
+
|
|
7
|
+
[](package.json) [](package.json) [](https://signway.dev/)
|
|
8
|
+
|
|
9
|
+
[signway.dev](https://signway.dev/) · [mosa.sh](https://mosa.sh)
|
|
10
|
+
|
|
11
|
+
</div>
|
|
12
|
+
|
|
13
|
+
```sh
|
|
14
|
+
npm i oidcbridge
|
|
15
|
+
```
|
|
16
|
+
|
|
17
|
+
```ts
|
|
18
|
+
import { oidcbridge } from "oidcbridge";
|
|
19
|
+
```
|
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "oidcbridge",
|
|
3
|
+
"version": "0.0.1",
|
|
4
|
+
"description": "Small, framework-neutral primitives for bridging OpenID Connect providers to identity systems.",
|
|
5
|
+
"type": "module",
|
|
6
|
+
"main": "./dist/index.js",
|
|
7
|
+
"types": "./dist/index.d.ts",
|
|
8
|
+
"exports": { ".": { "types": "./dist/index.d.ts", "import": "./dist/index.js", "default": "./dist/index.js" } },
|
|
9
|
+
"files": ["dist", "README.md"],
|
|
10
|
+
"sideEffects": false,
|
|
11
|
+
"scripts": { "build": "tsc --project tsconfig.json", "prepublishOnly": "npm run build" },
|
|
12
|
+
"keywords": ["auth", "authentication", "oidc", "openid-connect", "identity", "bridge"],
|
|
13
|
+
"homepage": "https://signway.dev/",
|
|
14
|
+
"author": "Mosanic <dev@mosanic.io>",
|
|
15
|
+
"license": "MIT",
|
|
16
|
+
"engines": { "node": ">=20" },
|
|
17
|
+
"publishConfig": { "access": "public" },
|
|
18
|
+
"devDependencies": { "typescript": "^5.9.3" },
|
|
19
|
+
"repository": { "type": "git", "url": "git+https://github.com/mosanic/mosa-platform.git", "directory": "packages/oidcbridge" }
|
|
20
|
+
}
|