mirror of
https://github.com/oven-sh/setup-bun.git
synced 2025-02-23 18:50:10 +08:00
42 lines
984 B
JSON
42 lines
984 B
JSON
{
|
|
"name": "nanoid",
|
|
"version": "4.0.0",
|
|
"description": "A tiny (116 bytes), secure URL-friendly unique string ID generator",
|
|
"keywords": [
|
|
"uuid",
|
|
"random",
|
|
"id",
|
|
"url"
|
|
],
|
|
"type": "module",
|
|
"engines": {
|
|
"node": "^14 || ^16 || >=18"
|
|
},
|
|
"author": "Andrey Sitnik <andrey@sitnik.ru>",
|
|
"license": "MIT",
|
|
"repository": "ai/nanoid",
|
|
"exports": {
|
|
".": {
|
|
"browser": "./index.browser.js",
|
|
"default": "./index.js"
|
|
},
|
|
"./async": {
|
|
"browser": "./async/index.browser.js",
|
|
"default": "./async/index.js"
|
|
},
|
|
"./non-secure": "./non-secure/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"browser": {
|
|
"./index.js": "./index.browser.js",
|
|
"./async/index.js": "./async/index.browser.js",
|
|
"./async/index.cjs": "./async/index.browser.cjs"
|
|
},
|
|
"react-native": {
|
|
"./async/index.js": "./async/index.native.js"
|
|
},
|
|
"bin": "./bin/nanoid.js",
|
|
"sideEffects": false,
|
|
"types": "./index.d.ts"
|
|
}
|