generate-pw 2.3.1 â 2.3.2
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 +21 -19
- package/docs/LICENSE.md +2 -2
- package/docs/README.md +21 -19
- package/docs/SECURITY.md +3 -3
- package/package.json +17 -15
package/README.md
CHANGED
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
|
|
24
24
|
<a href="https://npmstar.com/compare/generate-pw">
|
|
25
25
|
<img height=31 src="https://img.shields.io/npm/dm/generate-pw?logo=npm&color=af68ff&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
26
|
+
<a href="https://github.com/adamlui/js-utils/releases/tag/generate-pw-2.3.2">
|
|
27
|
+
<img height=31 src="https://img.shields.io/badge/Latest_Build-2.3.2-44cc11.svg?logo=icinga&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
26
28
|
<a href="#%EF%B8%8F-mit-license">
|
|
27
29
|
<img height=31 src="https://img.shields.io/badge/License-MIT-orange.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
28
|
-
<a href="https://github.com/adamlui/js-utils/releases/tag/generate-pw-2.3.1">
|
|
29
|
-
<img height=31 src="https://img.shields.io/badge/Latest_Build-2.3.1-44cc11.svg?logo=icinga&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
30
30
|
<a href="https://www.npmjs.com/package/generate-pw?activeTab=code">
|
|
31
31
|
<img height=31 src="https://img.shields.io/npm/unpacked-size/generate-pw?style=for-the-badge&logo=ebox&logoColor=white&labelColor=464646&color=blue"></a>
|
|
32
|
-
<a href="https://sonarcloud.io/component_measures?metric=
|
|
33
|
-
<img height=31 src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fsonarcloud.io%2Fapi%2Fmeasures%2Fcomponent%3Fcomponent%3Dadamlui_js-utils%3Agenerate-pw%2Fsrc%2Fgenerate-pw.js%26metricKeys%3Dvulnerabilities&query=%24.component.measures.0.value&style=for-the-badge&logo=
|
|
32
|
+
<a href="https://sonarcloud.io/component_measures?metric=vulnerabilities&selected=adamlui_js-utils%3Agenerate-pw&id=adamlui_js-utils">
|
|
33
|
+
<img height=31 src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fsonarcloud.io%2Fapi%2Fmeasures%2Fcomponent%3Fcomponent%3Dadamlui_js-utils%3Agenerate-pw%2Fsrc%2Fgenerate-pw.js%26metricKeys%3Dvulnerabilities&query=%24.component.measures.0.value&style=for-the-badge&logo=sonar&logoColor=white&labelColor=464646&label=Vulnerabilities&color=gold"></a>
|
|
34
34
|
<a href="https://github.com/toolleeo/cli-apps/#password-managers">
|
|
35
35
|
<img height=31 src="https://img.shields.io/badge/Mentioned_in-Awesome-ff69b4?logo=awesomelists&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
36
36
|
|
|
@@ -92,14 +92,14 @@ const pw = require('generate-pw')
|
|
|
92
92
|
#### <> HTML script tag:
|
|
93
93
|
|
|
94
94
|
```html
|
|
95
|
-
<script src="https://cdn.jsdelivr.net/npm/generate-pw@2.3.
|
|
95
|
+
<script src="https://cdn.jsdelivr.net/npm/generate-pw@2.3.2/dist/generate-pw.min.js"></script>
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
#### ES6:
|
|
99
99
|
|
|
100
100
|
```js
|
|
101
101
|
(async () => {
|
|
102
|
-
await import('https://cdn.jsdelivr.net/npm/generate-pw@2.3.
|
|
102
|
+
await import('https://cdn.jsdelivr.net/npm/generate-pw@2.3.2/dist/generate-pw.min.js')
|
|
103
103
|
// Your code here...
|
|
104
104
|
})()
|
|
105
105
|
```
|
|
@@ -108,7 +108,7 @@ const pw = require('generate-pw')
|
|
|
108
108
|
|
|
109
109
|
```js
|
|
110
110
|
...
|
|
111
|
-
// @require https://cdn.jsdelivr.net/npm/generate-pw@2.3.
|
|
111
|
+
// @require https://cdn.jsdelivr.net/npm/generate-pw@2.3.2/dist/generate-pw.min.js
|
|
112
112
|
// ==/UserScript==
|
|
113
113
|
|
|
114
114
|
// Your code here...
|
|
@@ -116,7 +116,7 @@ const pw = require('generate-pw')
|
|
|
116
116
|
|
|
117
117
|
<br>
|
|
118
118
|
|
|
119
|
-
**đĄ Note:** To always import the latest version (not recommended in production!) remove the `@2.3.
|
|
119
|
+
**đĄ Note:** To always import the latest version (not recommended in production!) remove the `@2.3.2` version tag from the jsDelivr URL: `https://cdn.jsdelivr.net/npm/generate-pw/dist/generate-pw.min.js`
|
|
120
120
|
|
|
121
121
|
<br>
|
|
122
122
|
|
|
@@ -354,28 +354,30 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
354
354
|
|
|
355
355
|
## đ ī¸ Related utilities
|
|
356
356
|
|
|
357
|
-
### <picture><source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@5c34563/generate-ip/assets/images/icons/node-graph/white/icon55x49.png"><img height=21 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@5c34563/generate-ip/assets/images/icons/node-graph/black/icon55x49.png"></picture> [generate-ip](https://js-utils
|
|
357
|
+
### <picture><source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@5c34563/generate-ip/assets/images/icons/node-graph/white/icon55x49.png"><img height=21 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@5c34563/generate-ip/assets/images/icons/node-graph/black/icon55x49.png"></picture> [generate-ip](https://github.com/adamlui/js-utils/tree/main/generate-ip/#readme) <a href="https://github.com/toolleeo/cli-apps/#networking"><img height=18 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/badges/awesome/badge.svg"></a>
|
|
358
358
|
|
|
359
359
|
> Randomly generate, format, and validate IPv4 + IPv6 + MAC addresses.
|
|
360
|
-
<br>[Install](https://
|
|
361
|
-
[Readme](https://
|
|
362
|
-
[API usage](https://
|
|
363
|
-
[CLI usage](https://
|
|
360
|
+
<br>[Install](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#-installation) /
|
|
361
|
+
[Readme](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#readme) /
|
|
362
|
+
[API usage](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#-api-usage) /
|
|
363
|
+
[CLI usage](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#-command-line-usage) /
|
|
364
364
|
[Discuss](https://github.com/adamlui/js-utils/discussions)
|
|
365
365
|
|
|
366
|
-
### <picture><source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d3424a/geolocate/assets/images/icons/wire-globe/white/icon32.png"><img height=22 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d3424a/geolocate/assets/images/icons/wire-globe/black/icon32.png"></picture> [geolocate](https://js-utils
|
|
366
|
+
### <picture><source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d3424a/geolocate/assets/images/icons/wire-globe/white/icon32.png"><img height=22 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d3424a/geolocate/assets/images/icons/wire-globe/black/icon32.png"></picture> [geolocate](https://github.com/adamlui/js-utils/tree/main/geolocate/#readme) <a href="https://github.com/toolleeo/cli-apps/#networking"><img height=18 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/badges/awesome/badge.svg"></a>
|
|
367
367
|
|
|
368
368
|
> Fetch IP geolocation data from the CLI.
|
|
369
|
-
<br>[Install](https://docs
|
|
370
|
-
[Readme](https://docs
|
|
371
|
-
[CLI usage](https://docs
|
|
372
|
-
[API usage](https://docs
|
|
369
|
+
<br>[Install](https://github.com/adamlui/js-utils/tree/main/geolocate/docs/#-installation) /
|
|
370
|
+
[Readme](https://github.com/adamlui/js-utils/tree/main/geolocate/docs/#readme) /
|
|
371
|
+
[CLI usage](https://github.com/adamlui/js-utils/tree/main/geolocate/docs/#-command-line-usage) /
|
|
372
|
+
[API usage](https://github.com/adamlui/js-utils/tree/main/geolocate/docs/#-api-usage) /
|
|
373
373
|
[Discuss](https://github.com/adamlui/js-utils/discussions)
|
|
374
374
|
|
|
375
375
|
<br>
|
|
376
376
|
|
|
377
377
|
<img height=6px width="100%" src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/separators/aqua-gradient.png">
|
|
378
378
|
|
|
379
|
-
<picture><source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/icons/home/white/icon32x27.png"><img height=13 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/icons/home/dark-gray/icon32x27.png"></picture> <a href="https://js-utils
|
|
379
|
+
<picture><source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/icons/home/white/icon32x27.png"><img height=13 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/icons/home/dark-gray/icon32x27.png"></picture> <a href="https://github.com/adamlui/js-utils/#readme">**More JavaScript utilities**</a> /
|
|
380
380
|
<a href="https://github.com/adamlui/js-utils/discussions">Discuss</a> /
|
|
381
|
+
<a href="https://github.com/adamlui/js-utils/issues">Report bug</a> /
|
|
382
|
+
<a href="mailto:security@tidelift.com">Report vulnerability</a> /
|
|
381
383
|
<a href="#top">Back to top â</a>
|
package/docs/LICENSE.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<div align="right">
|
|
2
2
|
<h6>
|
|
3
3
|
<picture>
|
|
4
|
-
<source type="image/svg+xml" media="(prefers-color-scheme: dark)" srcset="https://
|
|
5
|
-
<img height=14 src="https://
|
|
4
|
+
<source type="image/svg+xml" media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@548c9e8/assets/images/icons/earth/white/icon32.svg">
|
|
5
|
+
<img height=14 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@548c9e8/assets/images/icons/earth/black/icon32.svg">
|
|
6
6
|
</picture>
|
|
7
7
|
English |
|
|
8
8
|
<a href="zh-cn/LICENSE.md">įŽäŊ䏿</a> |
|
package/docs/README.md
CHANGED
|
@@ -23,14 +23,14 @@
|
|
|
23
23
|
|
|
24
24
|
<a href="https://npmstar.com/compare/generate-pw">
|
|
25
25
|
<img height=31 src="https://img.shields.io/npm/dm/generate-pw?logo=npm&color=af68ff&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
26
|
+
<a href="https://github.com/adamlui/js-utils/releases/tag/generate-pw-2.3.2">
|
|
27
|
+
<img height=31 src="https://img.shields.io/badge/Latest_Build-2.3.2-44cc11.svg?logo=icinga&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
26
28
|
<a href="#%EF%B8%8F-mit-license">
|
|
27
29
|
<img height=31 src="https://img.shields.io/badge/License-MIT-orange.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
28
|
-
<a href="https://github.com/adamlui/js-utils/releases/tag/generate-pw-2.3.1">
|
|
29
|
-
<img height=31 src="https://img.shields.io/badge/Latest_Build-2.3.1-44cc11.svg?logo=icinga&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
30
30
|
<a href="https://www.npmjs.com/package/generate-pw?activeTab=code">
|
|
31
31
|
<img height=31 src="https://img.shields.io/npm/unpacked-size/generate-pw?style=for-the-badge&logo=ebox&logoColor=white&labelColor=464646&color=blue"></a>
|
|
32
|
-
<a href="https://sonarcloud.io/component_measures?metric=
|
|
33
|
-
<img height=31 src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fsonarcloud.io%2Fapi%2Fmeasures%2Fcomponent%3Fcomponent%3Dadamlui_js-utils%3Agenerate-pw%2Fsrc%2Fgenerate-pw.js%26metricKeys%3Dvulnerabilities&query=%24.component.measures.0.value&style=for-the-badge&logo=
|
|
32
|
+
<a href="https://sonarcloud.io/component_measures?metric=vulnerabilities&selected=adamlui_js-utils%3Agenerate-pw&id=adamlui_js-utils">
|
|
33
|
+
<img height=31 src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fsonarcloud.io%2Fapi%2Fmeasures%2Fcomponent%3Fcomponent%3Dadamlui_js-utils%3Agenerate-pw%2Fsrc%2Fgenerate-pw.js%26metricKeys%3Dvulnerabilities&query=%24.component.measures.0.value&style=for-the-badge&logo=sonar&logoColor=white&labelColor=464646&label=Vulnerabilities&color=gold"></a>
|
|
34
34
|
<a href="https://github.com/toolleeo/cli-apps/#password-managers">
|
|
35
35
|
<img height=31 src="https://img.shields.io/badge/Mentioned_in-Awesome-ff69b4?logo=awesomelists&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
36
36
|
|
|
@@ -92,14 +92,14 @@ const pw = require('generate-pw')
|
|
|
92
92
|
#### <> HTML script tag:
|
|
93
93
|
|
|
94
94
|
```html
|
|
95
|
-
<script src="https://cdn.jsdelivr.net/npm/generate-pw@2.3.
|
|
95
|
+
<script src="https://cdn.jsdelivr.net/npm/generate-pw@2.3.2/dist/generate-pw.min.js"></script>
|
|
96
96
|
```
|
|
97
97
|
|
|
98
98
|
#### ES6:
|
|
99
99
|
|
|
100
100
|
```js
|
|
101
101
|
(async () => {
|
|
102
|
-
await import('https://cdn.jsdelivr.net/npm/generate-pw@2.3.
|
|
102
|
+
await import('https://cdn.jsdelivr.net/npm/generate-pw@2.3.2/dist/generate-pw.min.js')
|
|
103
103
|
// Your code here...
|
|
104
104
|
})()
|
|
105
105
|
```
|
|
@@ -108,7 +108,7 @@ const pw = require('generate-pw')
|
|
|
108
108
|
|
|
109
109
|
```js
|
|
110
110
|
...
|
|
111
|
-
// @require https://cdn.jsdelivr.net/npm/generate-pw@2.3.
|
|
111
|
+
// @require https://cdn.jsdelivr.net/npm/generate-pw@2.3.2/dist/generate-pw.min.js
|
|
112
112
|
// ==/UserScript==
|
|
113
113
|
|
|
114
114
|
// Your code here...
|
|
@@ -116,7 +116,7 @@ const pw = require('generate-pw')
|
|
|
116
116
|
|
|
117
117
|
<br>
|
|
118
118
|
|
|
119
|
-
**đĄ Note:** To always import the latest version (not recommended in production!) remove the `@2.3.
|
|
119
|
+
**đĄ Note:** To always import the latest version (not recommended in production!) remove the `@2.3.2` version tag from the jsDelivr URL: `https://cdn.jsdelivr.net/npm/generate-pw/dist/generate-pw.min.js`
|
|
120
120
|
|
|
121
121
|
<br>
|
|
122
122
|
|
|
@@ -354,28 +354,30 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
354
354
|
|
|
355
355
|
## đ ī¸ Related utilities
|
|
356
356
|
|
|
357
|
-
### <picture><source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@5c34563/generate-ip/assets/images/icons/node-graph/white/icon55x49.png"><img height=21 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@5c34563/generate-ip/assets/images/icons/node-graph/black/icon55x49.png"></picture> [generate-ip](https://js-utils
|
|
357
|
+
### <picture><source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@5c34563/generate-ip/assets/images/icons/node-graph/white/icon55x49.png"><img height=21 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@5c34563/generate-ip/assets/images/icons/node-graph/black/icon55x49.png"></picture> [generate-ip](https://github.com/adamlui/js-utils/tree/main/generate-ip/#readme) <a href="https://github.com/toolleeo/cli-apps/#networking"><img height=18 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/badges/awesome/badge.svg"></a>
|
|
358
358
|
|
|
359
359
|
> Randomly generate, format, and validate IPv4 + IPv6 + MAC addresses.
|
|
360
|
-
<br>[Install](https://
|
|
361
|
-
[Readme](https://
|
|
362
|
-
[API usage](https://
|
|
363
|
-
[CLI usage](https://
|
|
360
|
+
<br>[Install](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#-installation) /
|
|
361
|
+
[Readme](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#readme) /
|
|
362
|
+
[API usage](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#-api-usage) /
|
|
363
|
+
[CLI usage](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#-command-line-usage) /
|
|
364
364
|
[Discuss](https://github.com/adamlui/js-utils/discussions)
|
|
365
365
|
|
|
366
|
-
### <picture><source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d3424a/geolocate/assets/images/icons/wire-globe/white/icon32.png"><img height=22 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d3424a/geolocate/assets/images/icons/wire-globe/black/icon32.png"></picture> [geolocate](https://js-utils
|
|
366
|
+
### <picture><source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d3424a/geolocate/assets/images/icons/wire-globe/white/icon32.png"><img height=22 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d3424a/geolocate/assets/images/icons/wire-globe/black/icon32.png"></picture> [geolocate](https://github.com/adamlui/js-utils/tree/main/geolocate/#readme) <a href="https://github.com/toolleeo/cli-apps/#networking"><img height=18 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/badges/awesome/badge.svg"></a>
|
|
367
367
|
|
|
368
368
|
> Fetch IP geolocation data from the CLI.
|
|
369
|
-
<br>[Install](https://docs
|
|
370
|
-
[Readme](https://docs
|
|
371
|
-
[CLI usage](https://docs
|
|
372
|
-
[API usage](https://docs
|
|
369
|
+
<br>[Install](https://github.com/adamlui/js-utils/tree/main/geolocate/docs/#-installation) /
|
|
370
|
+
[Readme](https://github.com/adamlui/js-utils/tree/main/geolocate/docs/#readme) /
|
|
371
|
+
[CLI usage](https://github.com/adamlui/js-utils/tree/main/geolocate/docs/#-command-line-usage) /
|
|
372
|
+
[API usage](https://github.com/adamlui/js-utils/tree/main/geolocate/docs/#-api-usage) /
|
|
373
373
|
[Discuss](https://github.com/adamlui/js-utils/discussions)
|
|
374
374
|
|
|
375
375
|
<br>
|
|
376
376
|
|
|
377
377
|
<img height=6px width="100%" src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/separators/aqua-gradient.png">
|
|
378
378
|
|
|
379
|
-
<picture><source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/icons/home/white/icon32x27.png"><img height=13 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/icons/home/dark-gray/icon32x27.png"></picture> <a href="https://js-utils
|
|
379
|
+
<picture><source media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/icons/home/white/icon32x27.png"><img height=13 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/icons/home/dark-gray/icon32x27.png"></picture> <a href="https://github.com/adamlui/js-utils/#readme">**More JavaScript utilities**</a> /
|
|
380
380
|
<a href="https://github.com/adamlui/js-utils/discussions">Discuss</a> /
|
|
381
|
+
<a href="https://github.com/adamlui/js-utils/issues">Report bug</a> /
|
|
382
|
+
<a href="mailto:security@tidelift.com">Report vulnerability</a> /
|
|
381
383
|
<a href="#top">Back to top â</a>
|
package/docs/SECURITY.md
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
1
|
<div align="right">
|
|
2
2
|
<h6>
|
|
3
3
|
<picture>
|
|
4
|
-
<source type="image/svg+xml" media="(prefers-color-scheme: dark)" srcset="https://
|
|
5
|
-
<img height=14 src="https://
|
|
4
|
+
<source type="image/svg+xml" media="(prefers-color-scheme: dark)" srcset="https://cdn.jsdelivr.net/gh/adamlui/js-utils@548c9e8/assets/images/icons/earth/white/icon32.svg">
|
|
5
|
+
<img height=14 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@548c9e8/assets/images/icons/earth/black/icon32.svg">
|
|
6
6
|
</picture>
|
|
7
7
|
English |
|
|
8
8
|
<a href="zh-cn/SECURITY.md">įŽäŊ䏿</a> |
|
|
@@ -17,4 +17,4 @@
|
|
|
17
17
|
|
|
18
18
|
# đĄī¸ Security Policy
|
|
19
19
|
|
|
20
|
-
If you find a vulnerability, please e-mail security@tidelift.com and a fix will be coordinated within 2 business days.
|
|
20
|
+
If you find a vulnerability, please e-mail <security@tidelift.com> and a fix will be coordinated within 2 business days.
|
package/package.json
CHANGED
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "generate-pw",
|
|
3
|
-
"version": "2.3.
|
|
3
|
+
"version": "2.3.2",
|
|
4
4
|
"description": "Randomly generate, strengthen, and validate cryptographically-secure passwords.",
|
|
5
5
|
"author": {
|
|
6
6
|
"name": "Adam Lui",
|
|
7
7
|
"email": "adam@kudoai.com",
|
|
8
8
|
"url": "https://github.com/adamlui"
|
|
9
9
|
},
|
|
10
|
-
"homepage": "https://github.com/adamlui/js-utils",
|
|
10
|
+
"homepage": "https://github.com/adamlui/js-utils/tree/main/generate-ip/#readme",
|
|
11
11
|
"license": "MIT",
|
|
12
12
|
"funding": [
|
|
13
|
-
{
|
|
14
|
-
"type": "cashapp",
|
|
15
|
-
"url": "https://cash.app/$AdamLui"
|
|
16
|
-
},
|
|
17
13
|
{
|
|
18
14
|
"type": "github",
|
|
19
15
|
"url": "http://github.com/sponsors/adamlui"
|
|
@@ -35,14 +31,10 @@
|
|
|
35
31
|
],
|
|
36
32
|
"bin": {
|
|
37
33
|
"generate-pw": "dist/cli/index.js",
|
|
38
|
-
"generatepw": "dist/cli/index.js",
|
|
39
34
|
"gen-pw": "dist/cli/index.js",
|
|
35
|
+
"generatepw": "dist/cli/index.js",
|
|
40
36
|
"genpw": "dist/cli/index.js"
|
|
41
37
|
},
|
|
42
|
-
"directories": {
|
|
43
|
-
"lib": "./dist",
|
|
44
|
-
"doc": "./docs"
|
|
45
|
-
},
|
|
46
38
|
"scripts": {
|
|
47
39
|
"dev": "npm run build && npm i -g && generate-pw --help",
|
|
48
40
|
"build": "node utils/build",
|
|
@@ -54,7 +46,11 @@
|
|
|
54
46
|
"bump:patch": "bash utils/bump.sh patch",
|
|
55
47
|
"bump:minor": "bash utils/bump.sh minor",
|
|
56
48
|
"bump:feat": "npm run bump:minor",
|
|
57
|
-
"bump:major": "bash utils/bump.sh major"
|
|
49
|
+
"bump:major": "bash utils/bump.sh major",
|
|
50
|
+
"lint": "eslint . --cache",
|
|
51
|
+
"lint:all": "eslint .",
|
|
52
|
+
"lint:fix": "eslint . --fix --cache",
|
|
53
|
+
"lint:fix-all": "eslint . --fix"
|
|
58
54
|
},
|
|
59
55
|
"repository": {
|
|
60
56
|
"type": "git",
|
|
@@ -76,12 +72,18 @@
|
|
|
76
72
|
"url": "https://github.com/adamlui/js-utils/issues"
|
|
77
73
|
},
|
|
78
74
|
"dependencies": {
|
|
75
|
+
"console-table-printer": "^2.15.0",
|
|
79
76
|
"is-unicode-supported": "^2.1.0",
|
|
80
77
|
"node-clipboardy": "^1.0.3"
|
|
81
78
|
},
|
|
82
79
|
"devDependencies": {
|
|
83
|
-
"@adamlui/minify.js": "^2.5.
|
|
84
|
-
"
|
|
85
|
-
"
|
|
80
|
+
"@adamlui/minify.js": "^2.5.1",
|
|
81
|
+
"@eslint/json": "^1.2.0",
|
|
82
|
+
"@eslint/markdown": "^8.0.1",
|
|
83
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
84
|
+
"copyfiles": "^2.4.1",
|
|
85
|
+
"eslint": "^9.39.4",
|
|
86
|
+
"eslint-plugin-import": "^2.32.0",
|
|
87
|
+
"eslint-plugin-regexp": "^3.1.0"
|
|
86
88
|
}
|
|
87
89
|
}
|