signway 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
+ # Signway
4
+
5
+ ### Small, framework-neutral primitives for application authentication handoffs.
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://libraries.mosa.sh/auth/)
8
+
9
+ [libraries.mosa.sh/auth](https://libraries.mosa.sh/auth/) · [mosa.sh](https://mosa.sh)
10
+
11
+ </div>
12
+
13
+ ```sh
14
+ npm i signway
15
+ ```
16
+
17
+ ```ts
18
+ import { signway } from "signway";
19
+ ```
@@ -0,0 +1,2 @@
1
+ /** The first stable surface of the package. */
2
+ export declare const signway = "0.0.1";
package/dist/index.js ADDED
@@ -0,0 +1,2 @@
1
+ /** The first stable surface of the package. */
2
+ export const signway = "0.0.1";
package/package.json ADDED
@@ -0,0 +1,47 @@
1
+ {
2
+ "name": "signway",
3
+ "version": "0.0.1",
4
+ "description": "Small, framework-neutral primitives for application authentication handoffs.",
5
+ "type": "module",
6
+ "main": "./dist/index.js",
7
+ "types": "./dist/index.d.ts",
8
+ "exports": {
9
+ ".": {
10
+ "types": "./dist/index.d.ts",
11
+ "import": "./dist/index.js",
12
+ "default": "./dist/index.js"
13
+ }
14
+ },
15
+ "files": [
16
+ "dist",
17
+ "README.md"
18
+ ],
19
+ "sideEffects": false,
20
+ "scripts": {
21
+ "build": "tsc --project tsconfig.json",
22
+ "prepublishOnly": "npm run build"
23
+ },
24
+ "keywords": [
25
+ "auth",
26
+ "authentication",
27
+ "handoff",
28
+ "session"
29
+ ],
30
+ "homepage": "https://libraries.mosa.sh/auth/",
31
+ "author": "Mosanic <dev@mosanic.io>",
32
+ "license": "MIT",
33
+ "engines": {
34
+ "node": ">=20"
35
+ },
36
+ "publishConfig": {
37
+ "access": "public"
38
+ },
39
+ "devDependencies": {
40
+ "typescript": "^5.9.3"
41
+ },
42
+ "repository": {
43
+ "type": "git",
44
+ "url": "git+https://github.com/mosanic/mosa-platform.git",
45
+ "directory": "packages/signway"
46
+ }
47
+ }