@lacspace/crypto 1.1.0 → 1.1.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 +10 -0
- package/package.json +13 -2
package/README.md
CHANGED
|
@@ -120,4 +120,14 @@ This package is **free** under the **[Lacspace Free Licence](https://lacspace.co
|
|
|
120
120
|
|
|
121
121
|
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)**.
|
|
122
122
|
|
|
123
|
+
---
|
|
124
|
+
|
|
125
|
+
<div align="center">
|
|
126
|
+
|
|
127
|
+
**Part of the Lacspace ecosystem — 35 zero-dependency, isomorphic TypeScript packages.**
|
|
128
|
+
|
|
129
|
+
[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)
|
|
130
|
+
|
|
131
|
+
</div>
|
|
132
|
+
|
|
123
133
|
<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/crypto",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "Safe, boring cryptography over Web Crypto — authenticated AES-256-GCM, PBKDF2 key derivation, SHA-256, HMAC, secure random and constant-time compare. Isomorphic (Node, edge, browser, RN).",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "./dist/index.cjs",
|
|
@@ -36,7 +36,15 @@
|
|
|
36
36
|
"hmac",
|
|
37
37
|
"constant-time",
|
|
38
38
|
"isomorphic",
|
|
39
|
-
"typescript"
|
|
39
|
+
"typescript",
|
|
40
|
+
"aead",
|
|
41
|
+
"gcm",
|
|
42
|
+
"hkdf",
|
|
43
|
+
"key-derivation",
|
|
44
|
+
"envelope-encryption",
|
|
45
|
+
"keyring",
|
|
46
|
+
"encrypt",
|
|
47
|
+
"decrypt"
|
|
40
48
|
],
|
|
41
49
|
"author": "Lacspace <contact@lacspace.com>",
|
|
42
50
|
"license": "SEE LICENSE IN LICENSE",
|
|
@@ -51,5 +59,8 @@
|
|
|
51
59
|
},
|
|
52
60
|
"engines": {
|
|
53
61
|
"node": ">=18"
|
|
62
|
+
},
|
|
63
|
+
"publishConfig": {
|
|
64
|
+
"access": "public"
|
|
54
65
|
}
|
|
55
66
|
}
|