UNPKG

1.29 kBJSONView Raw
1{
2 "name": "nanoid",
3 "version": "3.1.11",
4 "description": "A tiny (108 bytes), secure URL-friendly unique string ID generator",
5 "keywords": [
6 "uuid",
7 "random",
8 "id",
9 "url"
10 ],
11 "engines": {
12 "node": "^10 || ^12 || >=13.7"
13 },
14 "author": "Andrey Sitnik <andrey@sitnik.ru>",
15 "license": "MIT",
16 "repository": "ai/nanoid",
17 "browser": {
18 "./index.js": "./index.browser.js"
19 },
20 "react-native": "index.js",
21 "bin": "./bin/nanoid.cjs",
22 "sideEffects": false,
23 "type": "module",
24 "main": "index.cjs",
25 "module": "index.js",
26 "exports": {
27 ".": {
28 "browser": "./index.browser.js",
29 "require": "./index.cjs",
30 "import": "./index.js"
31 },
32 "./package.json": "./package.json",
33 "./async/package.json": "./async/package.json",
34 "./async": {
35 "browser": "./async/index.browser.js",
36 "require": "./async/index.cjs",
37 "import": "./async/index.js"
38 },
39 "./non-secure/package.json": "./non-secure/package.json",
40 "./non-secure": {
41 "require": "./non-secure/index.cjs",
42 "import": "./non-secure/index.js"
43 },
44 "./url-alphabet/package.json": "./url-alphabet/package.json",
45 "./url-alphabet": {
46 "require": "./url-alphabet/index.cjs",
47 "import": "./url-alphabet/index.js"
48 }
49 }
50}
\No newline at end of file