nanoid 3.1.23 → 3.1.24
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.
Potentially problematic release.
This version of nanoid might be problematic. Click here for more details.
- package/README.md +1 -0
- package/package.json +5 -2
package/README.md
CHANGED
@@ -401,6 +401,7 @@ the same ID generator on the client and server side.
|
|
401
401
|
* [Ruby](https://github.com/radeno/nanoid.rb)
|
402
402
|
* [Rust](https://github.com/nikolay-govorov/nanoid)
|
403
403
|
* [Swift](https://github.com/antiflasher/NanoID)
|
404
|
+
* [V](https://github.com/invipal/nanoid)
|
404
405
|
|
405
406
|
Also, [CLI] is available to generate IDs from a command line.
|
406
407
|
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "nanoid",
|
3
|
-
"version": "3.1.
|
3
|
+
"version": "3.1.24",
|
4
4
|
"description": "A tiny (108 bytes), secure URL-friendly unique string ID generator",
|
5
5
|
"keywords": [
|
6
6
|
"uuid",
|
@@ -15,7 +15,10 @@
|
|
15
15
|
"license": "MIT",
|
16
16
|
"repository": "ai/nanoid",
|
17
17
|
"browser": {
|
18
|
-
"./index.js": "./index.browser.js"
|
18
|
+
"./index.js": "./index.browser.js",
|
19
|
+
"./index.cjs": "./index.browser.js",
|
20
|
+
"./async/index.js": "./async/index.browser.js",
|
21
|
+
"./async/index.cjs": "./async/index.browser.js"
|
19
22
|
},
|
20
23
|
"react-native": "index.js",
|
21
24
|
"bin": "./bin/nanoid.cjs",
|