secure-web-token 1.2.11 → 1.2.13
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 +3 -4
- package/package.json +29 -4
package/README.md
CHANGED
|
@@ -1,9 +1,8 @@
|
|
|
1
1
|
<p align="center">
|
|
2
|
-
<img src="https://res.cloudinary.com/dch9wfmjd/image/upload/
|
|
2
|
+
<img src="https://res.cloudinary.com/dch9wfmjd/image/upload/v1778127677/varient-1-circle_wykez9.png" alt="Secure Web Token Logo" width="48" align="center" />
|
|
3
|
+
<strong>secure-web-token (SWT)</strong>
|
|
3
4
|
</p>
|
|
4
5
|
|
|
5
|
-
<h1 align="center">secure-web-token (SWT)</h1>
|
|
6
|
-
|
|
7
6
|
<p align="center">
|
|
8
7
|
<strong>The secure, encrypted, device-bound alternative to JWT — built for Node.js</strong>
|
|
9
8
|
</p>
|
|
@@ -467,4 +466,4 @@ npm run build
|
|
|
467
466
|
Your users deserve encrypted, device-bound, truly revocable auth.
|
|
468
467
|
<br/><br/>
|
|
469
468
|
<code>npm install secure-web-token</code>
|
|
470
|
-
</p>
|
|
469
|
+
</p>
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "secure-web-token",
|
|
3
|
-
"version": "1.2.
|
|
4
|
-
"description": "A secure
|
|
3
|
+
"version": "1.2.13",
|
|
4
|
+
"description": "A secure, encrypted, device-bound authentication token library for Node.js — the best alternative to JWT with AES-256-GCM encryption, device fingerprinting, and true logout support.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"scripts": {
|
|
@@ -10,8 +10,33 @@
|
|
|
10
10
|
"test": "node test.js"
|
|
11
11
|
},
|
|
12
12
|
"keywords": [
|
|
13
|
+
"jwt-alternative",
|
|
14
|
+
"jwt alternative",
|
|
15
|
+
"replace jwt",
|
|
16
|
+
"better than jwt",
|
|
17
|
+
"jwt replacement",
|
|
18
|
+
"secure token",
|
|
19
|
+
"encrypted token",
|
|
20
|
+
"token encryption",
|
|
21
|
+
"aes-256-gcm",
|
|
22
|
+
"device binding",
|
|
23
|
+
"device-bound token",
|
|
24
|
+
"single device login",
|
|
25
|
+
"session management",
|
|
26
|
+
"session revocation",
|
|
27
|
+
"true logout",
|
|
28
|
+
"authentication",
|
|
29
|
+
"auth",
|
|
13
30
|
"token",
|
|
14
|
-
"security"
|
|
31
|
+
"security",
|
|
32
|
+
"secure session",
|
|
33
|
+
"httponly cookie",
|
|
34
|
+
"device fingerprint",
|
|
35
|
+
"stateful auth",
|
|
36
|
+
"express auth",
|
|
37
|
+
"nodejs auth",
|
|
38
|
+
"admin auth",
|
|
39
|
+
"saas auth"
|
|
15
40
|
],
|
|
16
41
|
"author": "Znos",
|
|
17
42
|
"license": "MIT",
|
|
@@ -31,4 +56,4 @@
|
|
|
31
56
|
"@types/node": "^25.0.6",
|
|
32
57
|
"typescript": "^5.9.3"
|
|
33
58
|
}
|
|
34
|
-
}
|
|
59
|
+
}
|