@lacspace/jwt 1.2.0 → 1.2.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.
Files changed (2) hide show
  1. package/README.md +10 -0
  2. package/package.json +14 -2
package/README.md CHANGED
@@ -121,4 +121,14 @@ This package is **free** under the **[Lacspace Free Licence](https://lacspace.co
121
121
 
122
122
  Not every Lacspace package is free. We also offer **Commercial** (paid), **Client-specific**, and **Private** (proprietary) packages under separate terms. See the full **[Lacspace Licence Centre](https://lacspace.com/licenses)**.
123
123
 
124
+ ---
125
+
126
+ <div align="center">
127
+
128
+ **Part of the Lacspace ecosystem — 35 zero-dependency, isomorphic TypeScript packages.**
129
+
130
+ [All packages ↗](https://lacspace.com/packages) · [npm org ↗](https://www.npmjs.com/org/lacspace) · [Licence Centre ↗](https://lacspace.com/licenses) · [GitHub ↗](https://github.com/lacspace/npm-packages)
131
+
132
+ </div>
133
+
124
134
  <div align="center"><sub>Built with care by <a href="https://lacspace.com">Lacspace</a> · Lacspace Free Licence · <a href="https://github.com/lacspace/npm-packages">source</a></sub></div>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@lacspace/jwt",
3
- "version": "1.2.0",
3
+ "version": "1.2.1",
4
4
  "description": "JSON Web Tokens (HS256/384/512) with strict expiry/issuer/audience checks + secure random & CSRF tokens. Isomorphic over Web Crypto — Node, edge, browser.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.cjs",
@@ -35,7 +35,16 @@
35
35
  "csrf",
36
36
  "web-crypto",
37
37
  "edge",
38
- "typescript"
38
+ "typescript",
39
+ "jose",
40
+ "rs256",
41
+ "es256",
42
+ "hs384",
43
+ "hs512",
44
+ "jwks",
45
+ "refresh-token",
46
+ "token-rotation",
47
+ "sign"
39
48
  ],
40
49
  "author": "Lacspace <contact@lacspace.com>",
41
50
  "license": "SEE LICENSE IN LICENSE",
@@ -53,5 +62,8 @@
53
62
  },
54
63
  "dependencies": {
55
64
  "@lacspace/crypto": "^1.0.0"
65
+ },
66
+ "publishConfig": {
67
+ "access": "public"
56
68
  }
57
69
  }