smart-passphrase 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 +45 -45
package/README.md
CHANGED
|
@@ -16,7 +16,7 @@ A lightweight, secure, and memorable passphrase generator for Node.js and the br
|
|
|
16
16
|
## Install
|
|
17
17
|
|
|
18
18
|
```bash
|
|
19
|
-
npm install
|
|
19
|
+
npm install smart-passphrase
|
|
20
20
|
```
|
|
21
21
|
|
|
22
22
|
---
|
|
@@ -24,7 +24,7 @@ npm install @ayushsolanki29/smart-passphrase
|
|
|
24
24
|
## Usage
|
|
25
25
|
|
|
26
26
|
```ts
|
|
27
|
-
import { generatePassword } from "
|
|
27
|
+
import { generatePassword } from "smart-passphrase";
|
|
28
28
|
|
|
29
29
|
const password = generatePassword();
|
|
30
30
|
console.log(password);
|
package/package.json
CHANGED
|
@@ -1,46 +1,46 @@
|
|
|
1
|
-
{
|
|
2
|
-
"name": "smart-passphrase",
|
|
3
|
-
"version": "1.0.
|
|
4
|
-
"description": "Memorable, secure passphrase generator for web and Node.",
|
|
5
|
-
"license": "MIT",
|
|
6
|
-
"author": "Ayush Solanki <ayushsolanki2901@gmail.com> (https://github.com/ayushsolanki29)",
|
|
7
|
-
"type": "module",
|
|
8
|
-
|
|
9
|
-
"repository": {
|
|
10
|
-
"type": "git",
|
|
11
|
-
"url": "https://github.com/ayushsolanki29/smart-passphrase"
|
|
12
|
-
},
|
|
13
|
-
|
|
14
|
-
"keywords": [
|
|
15
|
-
"password",
|
|
16
|
-
"passphrase",
|
|
17
|
-
"generator",
|
|
18
|
-
"security",
|
|
19
|
-
"typescript"
|
|
20
|
-
],
|
|
21
|
-
|
|
22
|
-
"exports": {
|
|
23
|
-
".": {
|
|
24
|
-
"types": "./dist/index.d.ts",
|
|
25
|
-
"import": "./dist/esm/index.js",
|
|
26
|
-
"require": "./dist/cjs/index.cjs"
|
|
27
|
-
}
|
|
28
|
-
},
|
|
29
|
-
|
|
30
|
-
"main": "./dist/cjs/index.cjs",
|
|
31
|
-
"module": "./dist/esm/index.js",
|
|
32
|
-
"types": "./dist/index.d.ts",
|
|
33
|
-
|
|
34
|
-
"files": ["dist"],
|
|
35
|
-
"sideEffects": false,
|
|
36
|
-
|
|
37
|
-
"scripts": {
|
|
38
|
-
"build:esm": "tsc -p tsconfig.esm.json",
|
|
39
|
-
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
40
|
-
"build": "npm run build:esm && npm run build:cjs"
|
|
41
|
-
},
|
|
42
|
-
|
|
43
|
-
"devDependencies": {
|
|
44
|
-
"typescript": "^5.5.4"
|
|
45
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"name": "smart-passphrase",
|
|
3
|
+
"version": "1.0.1",
|
|
4
|
+
"description": "Memorable, secure passphrase generator for web and Node.",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"author": "Ayush Solanki <ayushsolanki2901@gmail.com> (https://github.com/ayushsolanki29)",
|
|
7
|
+
"type": "module",
|
|
8
|
+
|
|
9
|
+
"repository": {
|
|
10
|
+
"type": "git",
|
|
11
|
+
"url": "https://github.com/ayushsolanki29/smart-passphrase"
|
|
12
|
+
},
|
|
13
|
+
|
|
14
|
+
"keywords": [
|
|
15
|
+
"password",
|
|
16
|
+
"passphrase",
|
|
17
|
+
"generator",
|
|
18
|
+
"security",
|
|
19
|
+
"typescript"
|
|
20
|
+
],
|
|
21
|
+
|
|
22
|
+
"exports": {
|
|
23
|
+
".": {
|
|
24
|
+
"types": "./dist/index.d.ts",
|
|
25
|
+
"import": "./dist/esm/index.js",
|
|
26
|
+
"require": "./dist/cjs/index.cjs"
|
|
27
|
+
}
|
|
28
|
+
},
|
|
29
|
+
|
|
30
|
+
"main": "./dist/cjs/index.cjs",
|
|
31
|
+
"module": "./dist/esm/index.js",
|
|
32
|
+
"types": "./dist/index.d.ts",
|
|
33
|
+
|
|
34
|
+
"files": ["dist"],
|
|
35
|
+
"sideEffects": false,
|
|
36
|
+
|
|
37
|
+
"scripts": {
|
|
38
|
+
"build:esm": "tsc -p tsconfig.esm.json",
|
|
39
|
+
"build:cjs": "tsc -p tsconfig.cjs.json",
|
|
40
|
+
"build": "npm run build:esm && npm run build:cjs"
|
|
41
|
+
},
|
|
42
|
+
|
|
43
|
+
"devDependencies": {
|
|
44
|
+
"typescript": "^5.5.4"
|
|
45
|
+
}
|
|
46
46
|
}
|