@setzkasten-cms/auth 0.4.2 → 0.4.3

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/README.md +22 -0
  2. package/package.json +19 -2
package/README.md ADDED
@@ -0,0 +1,22 @@
1
+ # @setzkasten-cms/auth
2
+
3
+ > OAuth-Authentifizierung für Setzkasten CMS (GitHub + Google).
4
+
5
+ Teil von [Setzkasten](https://github.com/thosor87/setzkasten) — einem git-basierten CMS für Astro.
6
+
7
+ ## Features
8
+
9
+ - **GitHub OAuth** — Login via GitHub mit Token-Austausch
10
+ - **Google OAuth** — Login via Google mit PKCE
11
+ - **Allowed-Emails Guard** — Nur freigegebene E-Mail-Adressen erhalten Zugang
12
+ - **Session Management** — In-Memory Session Store
13
+
14
+ ## Installation
15
+
16
+ Dieses Package wird automatisch durch `@setzkasten-cms/astro` installiert.
17
+
18
+ ## Lizenz
19
+
20
+ Setzkasten Community License — [Details](https://github.com/thosor87/setzkasten/blob/main/LICENSE)
21
+
22
+ Entwickelt von [Lilapixel](https://lilapixel.de).
package/package.json CHANGED
@@ -1,7 +1,24 @@
1
1
  {
2
2
  "name": "@setzkasten-cms/auth",
3
- "version": "0.4.2",
3
+ "version": "0.4.3",
4
+ "description": "OAuth-Authentifizierung für Setzkasten CMS — GitHub + Google",
4
5
  "type": "module",
6
+ "license": "SEE LICENSE IN LICENSE",
7
+ "author": "Lilapixel <hello@lilapixel.de>",
8
+ "homepage": "https://github.com/thosor87/setzkasten/tree/main/packages/auth#readme",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/thosor87/setzkasten.git",
12
+ "directory": "packages/auth"
13
+ },
14
+ "bugs": "https://github.com/thosor87/setzkasten/issues",
15
+ "keywords": [
16
+ "cms",
17
+ "setzkasten",
18
+ "oauth",
19
+ "github-oauth",
20
+ "authentication"
21
+ ],
5
22
  "exports": {
6
23
  ".": {
7
24
  "import": "./src/index.ts",
@@ -14,7 +31,7 @@
14
31
  ],
15
32
  "dependencies": {
16
33
  "arctic": "^3.5.0",
17
- "@setzkasten-cms/core": "0.4.2"
34
+ "@setzkasten-cms/core": "0.4.3"
18
35
  },
19
36
  "scripts": {
20
37
  "build": "tsup",