@irfanshadikrishad/cipher 1.5.0 → 1.5.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 +6 -6
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -3,8 +3,8 @@
3
3
  A versatile and secure cryptographic library for implementing various cipher algorithms in Node.js applications with zero/0 dependencies.
4
4
 
5
5
  ![NPM Version](https://img.shields.io/npm/v/%40irfanshadikrishad%2Fcipher?style=for-the-badge&labelColor=141b23&color=%2385c1dc)
6
- ![NPM Downloads](https://img.shields.io/npm/dw/%40irfanshadikrishad%2Fcipher?style=for-the-badge&labelColor=202020&color=81B29A)
7
- ![NPM Unpacked Size](https://img.shields.io/npm/unpacked-size/%40irfanshadikrishad%2Fcipher?style=for-the-badge&labelColor=202020&color=BE9A60)
6
+ ![NPM Downloads](https://img.shields.io/npm/dw/%40irfanshadikrishad%2Fcipher?style=for-the-badge&labelColor=141b23&color=%2385c1dc)
7
+ ![NPM Unpacked Size](https://img.shields.io/npm/unpacked-size/%40irfanshadikrishad%2Fcipher?style=for-the-badge&labelColor=141b23&color=%2385c1dc)
8
8
 
9
9
  #### 🚀 Installation
10
10
 
@@ -26,7 +26,7 @@ bun:
26
26
  bun add @irfanshadikrishad/cipher
27
27
  ```
28
28
 
29
- #### 📖 Usage
29
+ #### Usage
30
30
 
31
31
  Import the library and use a cipher algorithm:
32
32
 
@@ -39,7 +39,7 @@ const caesar = new Cipher.Caesar(6)
39
39
  console.log(caesar.encrypt('hello world')) // Output: "nkrru cuxrj"
40
40
  ```
41
41
 
42
- #### 🔐 Supported Ciphers
42
+ #### Supported Ciphers
43
43
 
44
44
  This library provides implementations of various classical and modern ciphers:
45
45
 
@@ -60,11 +60,11 @@ This library provides implementations of various classical and modern ciphers:
60
60
 
61
61
  More ciphers coming soon...
62
62
 
63
- #### 🍀 Contribution
63
+ #### Contribution
64
64
 
65
65
  To contribute on the codebase, follow [contribution guideline](/docs/en/CONTRIBUTING.md).
66
66
 
67
- #### ❤️ Support
67
+ #### Support
68
68
 
69
69
  If you find this library useful, consider giving it a ⭐ on GitHub!
70
70
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@irfanshadikrishad/cipher",
3
3
  "description": "A versatile and secure cryptographic library for implementing various cipher algorithms in Node.js applications with zero/0 dependencies.",
4
- "version": "1.5.0",
4
+ "version": "1.5.3",
5
5
  "author": {
6
6
  "name": "Irfan Shadik Rishad"
7
7
  },
@@ -45,20 +45,20 @@
45
45
  ],
46
46
  "prettier": "@irfanshadikrishad/prettier",
47
47
  "devDependencies": {
48
- "@eslint/js": "^9.39.2",
49
- "@irfanshadikrishad/prettier": "^1.2.5",
48
+ "@eslint/js": "^10.0.1",
49
+ "@irfanshadikrishad/prettier": "^1.3.1",
50
50
  "@types/jest": "^30.0.0",
51
- "@types/node": "^25.0.3",
52
- "@typescript-eslint/eslint-plugin": "^8.50.1",
53
- "@typescript-eslint/parser": "^8.50.1",
54
- "eslint": "^9.39.2",
55
- "globals": "^16.5.0",
51
+ "@types/node": "^25.3.2",
52
+ "@typescript-eslint/eslint-plugin": "^8.56.1",
53
+ "@typescript-eslint/parser": "^8.56.1",
54
+ "eslint": "^10.0.2",
55
+ "globals": "^17.3.0",
56
56
  "husky": "^9.1.7",
57
57
  "jest": "^30.2.0",
58
- "prettier": "^3.7.4",
58
+ "prettier": "^3.8.1",
59
59
  "ts-jest": "^29.4.6",
60
60
  "typescript": "^5.9.3",
61
- "typescript-eslint": "^8.50.1"
61
+ "typescript-eslint": "^8.56.1"
62
62
  },
63
63
  "publishConfig": {
64
64
  "access": "public"