oauthbridge 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 ADDED
@@ -0,0 +1,19 @@
1
+ <div align="center">
2
+
3
+ # oauthbridge
4
+
5
+ ### Framework-neutral primitives for bridging OAuth providers to identity systems.
6
+
7
+ [![TypeScript](https://img.shields.io/badge/TypeScript-5.9-3178c6?logo=typescript&logoColor=white)](package.json) [![Module](https://img.shields.io/badge/module-ESM-f7df1e?logo=javascript&logoColor=111827)](package.json) [![Status](https://img.shields.io/badge/status-pre--alpha-f5a623)](https://signway.dev/)
8
+
9
+ [signway.dev](https://signway.dev/) · [mosa.sh](https://mosa.sh)
10
+
11
+ </div>
12
+
13
+ ```sh
14
+ npm i oauthbridge
15
+ ```
16
+
17
+ ```ts
18
+ import { oauthbridge } from "oauthbridge";
19
+ ```
@@ -0,0 +1,2 @@
1
+ /** The first stable surface of the package. */
2
+ export declare const oauthbridge = "0.0.1";
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ /** The first stable surface of the package. */
2
+ export const oauthbridge = "0.0.1";
package/package.json ADDED
@@ -0,0 +1,20 @@
1
+ {
2
+ "name": "oauthbridge",
3
+ "version": "0.0.1",
4
+ "description": "Small, framework-neutral primitives for bridging OAuth 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", "oauth", "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/oauthbridge" }
20
+ }