cipher-kit 0.0.10 → 1.0.0
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 +1 -1
- package/package.json +2 -5
package/README.md
CHANGED
|
@@ -31,7 +31,7 @@ It provides a simple, secure, and dependency-free API for encrypting and decrypt
|
|
|
31
31
|
## Installation 🔥
|
|
32
32
|
|
|
33
33
|
```bash
|
|
34
|
-
npm install cipher-kit
|
|
34
|
+
npm install cipher-kit@latest
|
|
35
35
|
```
|
|
36
36
|
|
|
37
37
|
> 💡 Works with `npm`, `pnpm`, `yarn`, `bun`, and `deno`. You can use it in dev dependencies since it's typically used only for local HTTPS.
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "cipher-kit",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "🔐 Secure, Lightweight, and Cross-Platform Encryption & Decryption for Web, Node.js, Deno, and Bun",
|
|
5
5
|
"homepage": "https://github.com/WolfieLeader/npm/tree/main/packages/cipher-kit#readme",
|
|
6
6
|
"repository": {
|
|
@@ -56,10 +56,7 @@
|
|
|
56
56
|
]
|
|
57
57
|
}
|
|
58
58
|
},
|
|
59
|
-
"files": [
|
|
60
|
-
"dist",
|
|
61
|
-
"README.md"
|
|
62
|
-
],
|
|
59
|
+
"files": ["dist"],
|
|
63
60
|
"sideEffects": false,
|
|
64
61
|
"scripts": {
|
|
65
62
|
"build": "tsup",
|