@adamlui/geolocate 2.4.1 → 2.4.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/README.md +21 -19
- package/docs/SECURITY.md +1 -1
- package/package.json +16 -14
package/README.md
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
|
|
7
7
|
<a href="https://npmstar.com/compare/@adamlui%2Fgeolocate">
|
|
8
8
|
<img height=31 src="https://img.shields.io/npm/dm/@adamlui/geolocate?logo=npm&color=af68ff&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
9
|
+
<a href="https://github.com/adamlui/js-utils/releases/tag/geolocate-2.4.2">
|
|
10
|
+
<img height=31 src="https://img.shields.io/badge/Latest_Build-2.4.2-44cc11.svg?logo=icinga&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
9
11
|
<a href="#%EF%B8%8F-mit-license">
|
|
10
12
|
<img height=31 src="https://img.shields.io/badge/License-MIT-orange.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
11
|
-
<a href="https://github.com/adamlui/js-utils/releases/tag/geolocate-2.4.1">
|
|
12
|
-
<img height=31 src="https://img.shields.io/badge/Latest_Build-2.4.1-44cc11.svg?logo=icinga&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
13
13
|
<a href="https://www.npmjs.com/package/@adamlui/geolocate?activeTab=code">
|
|
14
14
|
<img height=31 src="https://img.shields.io/npm/unpacked-size/%40adamlui%2Fgeolocate?style=for-the-badge&logo=ebox&logoColor=white&labelColor=464646&color=blue"></a>
|
|
15
|
-
<a href="https://sonarcloud.io/component_measures?metric=
|
|
16
|
-
<img height=31 src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fsonarcloud.io%2Fapi%2Fmeasures%2Fcomponent%3Fcomponent%3Dadamlui_js-utils%3Ageolocate%2Fsrc%2Fgeolocate.js%26metricKeys%3Dvulnerabilities&query=%24.component.measures.0.value&style=for-the-badge&logo=
|
|
15
|
+
<a href="https://sonarcloud.io/component_measures?metric=vulnerabilities&selected=adamlui_js-utils%3Ageolocate&id=adamlui_js-utils">
|
|
16
|
+
<img height=31 src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fsonarcloud.io%2Fapi%2Fmeasures%2Fcomponent%3Fcomponent%3Dadamlui_js-utils%3Ageolocate%2Fsrc%2Fgeolocate.js%26metricKeys%3Dvulnerabilities&query=%24.component.measures.0.value&style=for-the-badge&logo=sonar&logoColor=white&labelColor=464646&label=Vulnerabilities&color=gold"></a>
|
|
17
17
|
<a href="https://github.com/toolleeo/cli-apps/#networking">
|
|
18
18
|
<img height=31 src="https://img.shields.io/badge/Mentioned_in-Awesome-ff69b4?logo=awesomelists&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
19
19
|
|
|
@@ -124,14 +124,14 @@ const geo = require('@adamlui/geolocate')
|
|
|
124
124
|
#### <> HTML script tag:
|
|
125
125
|
|
|
126
126
|
```html
|
|
127
|
-
<script src="https://cdn.jsdelivr.net/npm/@adamlui/geolocate@2.4.
|
|
127
|
+
<script src="https://cdn.jsdelivr.net/npm/@adamlui/geolocate@2.4.2/dist/geolocate.min.js"></script>
|
|
128
128
|
```
|
|
129
129
|
|
|
130
130
|
#### ES6:
|
|
131
131
|
|
|
132
132
|
```js
|
|
133
133
|
(async () => {
|
|
134
|
-
await import('https://cdn.jsdelivr.net/npm/@adamlui/geolocate@2.4.
|
|
134
|
+
await import('https://cdn.jsdelivr.net/npm/@adamlui/geolocate@2.4.2/dist/geolocate.min.js')
|
|
135
135
|
// Your code here...
|
|
136
136
|
})()
|
|
137
137
|
```
|
|
@@ -140,7 +140,7 @@ const geo = require('@adamlui/geolocate')
|
|
|
140
140
|
|
|
141
141
|
```js
|
|
142
142
|
...
|
|
143
|
-
// @require https://cdn.jsdelivr.net/npm/@adamlui/geolocate@2.4.
|
|
143
|
+
// @require https://cdn.jsdelivr.net/npm/@adamlui/geolocate@2.4.2/dist/geolocate.min.js
|
|
144
144
|
// ==/UserScript==
|
|
145
145
|
|
|
146
146
|
// Your code here...
|
|
@@ -148,7 +148,7 @@ const geo = require('@adamlui/geolocate')
|
|
|
148
148
|
|
|
149
149
|
<br>
|
|
150
150
|
|
|
151
|
-
**📝 Note:** To always import the latest version (not recommended in production!) remove the `@2.4.
|
|
151
|
+
**📝 Note:** To always import the latest version (not recommended in production!) remove the `@2.4.2` version tag from the jsDelivr URL: `https://cdn.jsdelivr.net/npm/@adamlui/geolocate/dist/geolocate.min.js`
|
|
152
152
|
|
|
153
153
|
<br>
|
|
154
154
|
|
|
@@ -221,28 +221,30 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
221
221
|
|
|
222
222
|
## 🛠️ Related utilities
|
|
223
223
|
|
|
224
|
-
### <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
|
|
224
|
+
### <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>
|
|
225
225
|
|
|
226
226
|
> Randomly generate, format, and validate IPv4 + IPv6 + MAC addresses.
|
|
227
|
-
<br>[Install](https://
|
|
228
|
-
[Readme](https://
|
|
229
|
-
[API usage](https://
|
|
230
|
-
[CLI usage](https://
|
|
227
|
+
<br>[Install](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#-installation) /
|
|
228
|
+
[Readme](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#readme) /
|
|
229
|
+
[API usage](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#-api-usage) /
|
|
230
|
+
[CLI usage](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#-command-line-usage) /
|
|
231
231
|
[Discuss](https://github.com/adamlui/js-utils/discussions)
|
|
232
232
|
|
|
233
|
-
### [🔒 generate-pw](
|
|
233
|
+
### [🔒 generate-pw](https://github.com/adamlui/js-utils/tree/main/generate-pw/#readme) <a href="https://github.com/toolleeo/cli-apps/#password-managers"><img height=18 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/badges/awesome/badge.svg"></a>
|
|
234
234
|
|
|
235
235
|
> Randomly generate, strengthen, and validate cryptographically-secure passwords.
|
|
236
|
-
<br>[Install](https://docs
|
|
237
|
-
[Readme](https://docs
|
|
238
|
-
[API usage](https://docs
|
|
239
|
-
[CLI usage](https://docs
|
|
236
|
+
<br>[Install](https://github.com/adamlui/js-utils/tree/main/generate-pw/docs/#-installation) /
|
|
237
|
+
[Readme](https://github.com/adamlui/js-utils/tree/main/generate-pw/docs/#readme) /
|
|
238
|
+
[API usage](https://github.com/adamlui/js-utils/tree/main/generate-pw/docs/#-api-usage) /
|
|
239
|
+
[CLI usage](https://github.com/adamlui/js-utils/tree/main/generate-pw/docs/#-command-line-usage) /
|
|
240
240
|
[Discuss](https://github.com/adamlui/js-utils/discussions)
|
|
241
241
|
|
|
242
242
|
<br>
|
|
243
243
|
|
|
244
244
|
<img height=6px width="100%" src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/separators/aqua-gradient.png">
|
|
245
245
|
|
|
246
|
-
<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
|
|
246
|
+
<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> /
|
|
247
247
|
<a href="https://github.com/adamlui/js-utils/discussions">Discuss</a> /
|
|
248
|
+
<a href="https://github.com/adamlui/js-utils/issues">Report bug</a> /
|
|
249
|
+
<a href="mailto:security@tidelift.com">Report vulnerability</a> /
|
|
248
250
|
<a href="#top">Back to top ↑</a>
|
package/docs/README.md
CHANGED
|
@@ -6,14 +6,14 @@
|
|
|
6
6
|
|
|
7
7
|
<a href="https://npmstar.com/compare/@adamlui%2Fgeolocate">
|
|
8
8
|
<img height=31 src="https://img.shields.io/npm/dm/@adamlui/geolocate?logo=npm&color=af68ff&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
9
|
+
<a href="https://github.com/adamlui/js-utils/releases/tag/geolocate-2.4.2">
|
|
10
|
+
<img height=31 src="https://img.shields.io/badge/Latest_Build-2.4.2-44cc11.svg?logo=icinga&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
9
11
|
<a href="#%EF%B8%8F-mit-license">
|
|
10
12
|
<img height=31 src="https://img.shields.io/badge/License-MIT-orange.svg?logo=internetarchive&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
11
|
-
<a href="https://github.com/adamlui/js-utils/releases/tag/geolocate-2.4.1">
|
|
12
|
-
<img height=31 src="https://img.shields.io/badge/Latest_Build-2.4.1-44cc11.svg?logo=icinga&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
13
13
|
<a href="https://www.npmjs.com/package/@adamlui/geolocate?activeTab=code">
|
|
14
14
|
<img height=31 src="https://img.shields.io/npm/unpacked-size/%40adamlui%2Fgeolocate?style=for-the-badge&logo=ebox&logoColor=white&labelColor=464646&color=blue"></a>
|
|
15
|
-
<a href="https://sonarcloud.io/component_measures?metric=
|
|
16
|
-
<img height=31 src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fsonarcloud.io%2Fapi%2Fmeasures%2Fcomponent%3Fcomponent%3Dadamlui_js-utils%3Ageolocate%2Fsrc%2Fgeolocate.js%26metricKeys%3Dvulnerabilities&query=%24.component.measures.0.value&style=for-the-badge&logo=
|
|
15
|
+
<a href="https://sonarcloud.io/component_measures?metric=vulnerabilities&selected=adamlui_js-utils%3Ageolocate&id=adamlui_js-utils">
|
|
16
|
+
<img height=31 src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fsonarcloud.io%2Fapi%2Fmeasures%2Fcomponent%3Fcomponent%3Dadamlui_js-utils%3Ageolocate%2Fsrc%2Fgeolocate.js%26metricKeys%3Dvulnerabilities&query=%24.component.measures.0.value&style=for-the-badge&logo=sonar&logoColor=white&labelColor=464646&label=Vulnerabilities&color=gold"></a>
|
|
17
17
|
<a href="https://github.com/toolleeo/cli-apps/#networking">
|
|
18
18
|
<img height=31 src="https://img.shields.io/badge/Mentioned_in-Awesome-ff69b4?logo=awesomelists&logoColor=white&labelColor=464646&style=for-the-badge"></a>
|
|
19
19
|
|
|
@@ -124,14 +124,14 @@ const geo = require('@adamlui/geolocate')
|
|
|
124
124
|
#### <> HTML script tag:
|
|
125
125
|
|
|
126
126
|
```html
|
|
127
|
-
<script src="https://cdn.jsdelivr.net/npm/@adamlui/geolocate@2.4.
|
|
127
|
+
<script src="https://cdn.jsdelivr.net/npm/@adamlui/geolocate@2.4.2/dist/geolocate.min.js"></script>
|
|
128
128
|
```
|
|
129
129
|
|
|
130
130
|
#### ES6:
|
|
131
131
|
|
|
132
132
|
```js
|
|
133
133
|
(async () => {
|
|
134
|
-
await import('https://cdn.jsdelivr.net/npm/@adamlui/geolocate@2.4.
|
|
134
|
+
await import('https://cdn.jsdelivr.net/npm/@adamlui/geolocate@2.4.2/dist/geolocate.min.js')
|
|
135
135
|
// Your code here...
|
|
136
136
|
})()
|
|
137
137
|
```
|
|
@@ -140,7 +140,7 @@ const geo = require('@adamlui/geolocate')
|
|
|
140
140
|
|
|
141
141
|
```js
|
|
142
142
|
...
|
|
143
|
-
// @require https://cdn.jsdelivr.net/npm/@adamlui/geolocate@2.4.
|
|
143
|
+
// @require https://cdn.jsdelivr.net/npm/@adamlui/geolocate@2.4.2/dist/geolocate.min.js
|
|
144
144
|
// ==/UserScript==
|
|
145
145
|
|
|
146
146
|
// Your code here...
|
|
@@ -148,7 +148,7 @@ const geo = require('@adamlui/geolocate')
|
|
|
148
148
|
|
|
149
149
|
<br>
|
|
150
150
|
|
|
151
|
-
**📝 Note:** To always import the latest version (not recommended in production!) remove the `@2.4.
|
|
151
|
+
**📝 Note:** To always import the latest version (not recommended in production!) remove the `@2.4.2` version tag from the jsDelivr URL: `https://cdn.jsdelivr.net/npm/@adamlui/geolocate/dist/geolocate.min.js`
|
|
152
152
|
|
|
153
153
|
<br>
|
|
154
154
|
|
|
@@ -221,28 +221,30 @@ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLI
|
|
|
221
221
|
|
|
222
222
|
## 🛠️ Related utilities
|
|
223
223
|
|
|
224
|
-
### <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
|
|
224
|
+
### <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>
|
|
225
225
|
|
|
226
226
|
> Randomly generate, format, and validate IPv4 + IPv6 + MAC addresses.
|
|
227
|
-
<br>[Install](https://
|
|
228
|
-
[Readme](https://
|
|
229
|
-
[API usage](https://
|
|
230
|
-
[CLI usage](https://
|
|
227
|
+
<br>[Install](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#-installation) /
|
|
228
|
+
[Readme](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#readme) /
|
|
229
|
+
[API usage](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#-api-usage) /
|
|
230
|
+
[CLI usage](https://github.com/adamlui/js-utils/tree/main/generate-ip/docs/#-command-line-usage) /
|
|
231
231
|
[Discuss](https://github.com/adamlui/js-utils/discussions)
|
|
232
232
|
|
|
233
|
-
### [🔒 generate-pw](
|
|
233
|
+
### [🔒 generate-pw](https://github.com/adamlui/js-utils/tree/main/generate-pw/#readme) <a href="https://github.com/toolleeo/cli-apps/#password-managers"><img height=18 src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/badges/awesome/badge.svg"></a>
|
|
234
234
|
|
|
235
235
|
> Randomly generate, strengthen, and validate cryptographically-secure passwords.
|
|
236
|
-
<br>[Install](https://docs
|
|
237
|
-
[Readme](https://docs
|
|
238
|
-
[API usage](https://docs
|
|
239
|
-
[CLI usage](https://docs
|
|
236
|
+
<br>[Install](https://github.com/adamlui/js-utils/tree/main/generate-pw/docs/#-installation) /
|
|
237
|
+
[Readme](https://github.com/adamlui/js-utils/tree/main/generate-pw/docs/#readme) /
|
|
238
|
+
[API usage](https://github.com/adamlui/js-utils/tree/main/generate-pw/docs/#-api-usage) /
|
|
239
|
+
[CLI usage](https://github.com/adamlui/js-utils/tree/main/generate-pw/docs/#-command-line-usage) /
|
|
240
240
|
[Discuss](https://github.com/adamlui/js-utils/discussions)
|
|
241
241
|
|
|
242
242
|
<br>
|
|
243
243
|
|
|
244
244
|
<img height=6px width="100%" src="https://cdn.jsdelivr.net/gh/adamlui/js-utils@0d36e26/assets/images/separators/aqua-gradient.png">
|
|
245
245
|
|
|
246
|
-
<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
|
|
246
|
+
<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> /
|
|
247
247
|
<a href="https://github.com/adamlui/js-utils/discussions">Discuss</a> /
|
|
248
|
+
<a href="https://github.com/adamlui/js-utils/issues">Report bug</a> /
|
|
249
|
+
<a href="mailto:security@tidelift.com">Report vulnerability</a> /
|
|
248
250
|
<a href="#top">Back to top ↑</a>
|
package/docs/SECURITY.md
CHANGED
package/package.json
CHANGED
|
@@ -1,19 +1,15 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@adamlui/geolocate",
|
|
3
|
-
"version": "2.4.
|
|
3
|
+
"version": "2.4.2",
|
|
4
4
|
"description": "Fetch IP geolocation data from the CLI.",
|
|
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,10 +31,6 @@
|
|
|
35
31
|
"bin": {
|
|
36
32
|
"geolocate": "dist/cli/index.js"
|
|
37
33
|
},
|
|
38
|
-
"directories": {
|
|
39
|
-
"lib": "./dist",
|
|
40
|
-
"doc": "./docs"
|
|
41
|
-
},
|
|
42
34
|
"scripts": {
|
|
43
35
|
"dev": "npm run build && npm i -g && geolocate --help",
|
|
44
36
|
"build": "node utils/build",
|
|
@@ -50,7 +42,11 @@
|
|
|
50
42
|
"bump:patch": "bash utils/bump.sh patch",
|
|
51
43
|
"bump:minor": "bash utils/bump.sh minor",
|
|
52
44
|
"bump:feat": "npm run bump:minor",
|
|
53
|
-
"bump:major": "bash utils/bump.sh major"
|
|
45
|
+
"bump:major": "bash utils/bump.sh major",
|
|
46
|
+
"lint": "eslint . --cache",
|
|
47
|
+
"lint:all": "eslint .",
|
|
48
|
+
"lint:fix": "eslint . --fix --cache",
|
|
49
|
+
"lint:fix-all": "eslint . --fix"
|
|
54
50
|
},
|
|
55
51
|
"repository": {
|
|
56
52
|
"type": "git",
|
|
@@ -71,13 +67,19 @@
|
|
|
71
67
|
"url": "https://github.com/adamlui/js-utils/issues"
|
|
72
68
|
},
|
|
73
69
|
"dependencies": {
|
|
70
|
+
"console-table-printer": "^2.15.0",
|
|
74
71
|
"is-unicode-supported": "^2.1.0",
|
|
75
72
|
"node-clipboardy": "^1.0.3"
|
|
76
73
|
},
|
|
77
74
|
"devDependencies": {
|
|
78
|
-
"@adamlui/minify.js": "^2.5.
|
|
79
|
-
"
|
|
75
|
+
"@adamlui/minify.js": "^2.5.1",
|
|
76
|
+
"@eslint/json": "^1.2.0",
|
|
77
|
+
"@eslint/markdown": "^8.0.1",
|
|
78
|
+
"@stylistic/eslint-plugin": "^5.10.0",
|
|
80
79
|
"copyfiles": "^2.4.1",
|
|
81
|
-
"
|
|
80
|
+
"eslint": "^9.39.4",
|
|
81
|
+
"eslint-plugin-import": "^2.32.0",
|
|
82
|
+
"eslint-plugin-regexp": "^3.1.0",
|
|
83
|
+
"generate-ip": "^2.9.1"
|
|
82
84
|
}
|
|
83
85
|
}
|