| { |
| "author": "Andrey Sitnik <andrey@sitnik.ru>", |
| "bin": "./bin/nanoid.cjs", |
| "browser": { |
| "./index.js": "./index.browser.js" |
| }, |
| "description": "A tiny (108 bytes), secure URL-friendly unique string ID generator", |
| "engines": { |
| "node": "^10 || ^12 || >=13.7" |
| }, |
| "exports": { |
| ".": { |
| "browser": "./index.browser.js", |
| "import": "./index.js", |
| "require": "./index.cjs" |
| }, |
| "./async": { |
| "browser": "./async/index.browser.js", |
| "import": "./async/index.js", |
| "require": "./async/index.cjs" |
| }, |
| "./async/package.json": "./async/package.json", |
| "./non-secure": { |
| "import": "./non-secure/index.js", |
| "require": "./non-secure/index.cjs" |
| }, |
| "./non-secure/package.json": "./non-secure/package.json", |
| "./package.json": "./package.json", |
| "./url-alphabet": { |
| "import": "./url-alphabet/index.js", |
| "require": "./url-alphabet/index.cjs" |
| }, |
| "./url-alphabet/package.json": "./url-alphabet/package.json" |
| }, |
| "keywords": [ |
| "uuid", |
| "random", |
| "id", |
| "url" |
| ], |
| "license": "MIT", |
| "main": "index.cjs", |
| "module": "index.js", |
| "name": "nanoid", |
| "react-native": "index.js", |
| "repository": "ai/nanoid", |
| "sideEffects": false, |
| "type": "module", |
| "version": "3.1.12" |
| } |