| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546 |
- {
- "name": "nanoid",
- "version": "5.1.9",
- "description": "A tiny (118 bytes), secure URL-friendly unique string ID generator",
- "keywords": [
- "id",
- "random",
- "url",
- "uuid"
- ],
- "license": "MIT",
- "author": "Andrey Sitnik <andrey@sitnik.es>",
- "repository": "ai/nanoid",
- "funding": [
- {
- "type": "github",
- "url": "https://github.com/sponsors/ai"
- }
- ],
- "bin": "./bin/nanoid.js",
- "type": "module",
- "sideEffects": false,
- "browser": {
- "./index.js": "./index.browser.js"
- },
- "types": "./index.d.ts",
- "react-native": {
- "./index.js": "./index.browser.js"
- },
- "exports": {
- ".": {
- "types": "./index.d.ts",
- "browser": "./index.browser.js",
- "react-native": "./index.browser.js",
- "default": "./index.js"
- },
- "./non-secure": {
- "types": "./non-secure/index.d.ts",
- "default": "./non-secure/index.js"
- },
- "./package.json": "./package.json"
- },
- "engines": {
- "node": "^18 || >=20"
- }
- }
|