@tushardev01/farm-password 1.0.0 → 1.0.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 +2 -2
- package/package.json +1 -2
package/README.md
CHANGED
|
@@ -18,12 +18,12 @@ Generates secure random passwords using lowercase, uppercase, numbers, and symbo
|
|
|
18
18
|
## Installation
|
|
19
19
|
|
|
20
20
|
```bash
|
|
21
|
-
npm install
|
|
21
|
+
npm install @tushardev01/farm-password
|
|
22
22
|
```
|
|
23
23
|
|
|
24
24
|
# Usage (JavaScript / ESM)
|
|
25
25
|
```bash
|
|
26
|
-
import { genPassword, shuffleMax, genLowerLetters, genUpperLetters, genNumbers, genSymbols } from 'gen-password';
|
|
26
|
+
import { genPassword, shuffleMax, genLowerLetters, genUpperLetters, genNumbers, genSymbols } from '@tushardev01/gen-password';
|
|
27
27
|
|
|
28
28
|
// Generate a password with default character sets
|
|
29
29
|
const password1 = genPassword(16);
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@tushardev01/farm-password",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.1",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"main": "./app.js",
|
|
6
6
|
"exports": {
|
|
@@ -30,4 +30,3 @@
|
|
|
30
30
|
"license": "ISC",
|
|
31
31
|
"description": "Generates passwords and provides handy character arrays."
|
|
32
32
|
}
|
|
33
|
-
|