Browse Source

Add UUID module

ApisNecros 1 year ago
parent
commit
d6772b5305
2 changed files with 16 additions and 2 deletions
  1. 14 1
      package-lock.json
  2. 2 1
      package.json

+ 14 - 1
package-lock.json

@@ -5,7 +5,8 @@
     "packages": {
         "": {
             "dependencies": {
-                "prompt-sync": "^4.2.0"
+                "prompt-sync": "^4.2.0",
+                "uuid": "^9.0.1"
             },
             "devDependencies": {
                 "@nicquid/eslint-config-nqt": "^1.0.2"
@@ -2443,6 +2444,18 @@
                 "punycode": "^2.1.0"
             }
         },
+        "node_modules/uuid": {
+            "version": "9.0.1",
+            "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz",
+            "integrity": "sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==",
+            "funding": [
+                "https://github.com/sponsors/broofa",
+                "https://github.com/sponsors/ctavan"
+            ],
+            "bin": {
+                "uuid": "dist/bin/uuid"
+            }
+        },
         "node_modules/which": {
             "version": "2.0.2",
             "resolved": "https://registry.npmjs.org/which/-/which-2.0.2.tgz",

+ 2 - 1
package.json

@@ -4,6 +4,7 @@
         "@nicquid/eslint-config-nqt": "^1.0.2"
     },
     "dependencies": {
-        "prompt-sync": "^4.2.0"
+        "prompt-sync": "^4.2.0",
+        "uuid": "^9.0.1"
     }
 }