mirror of https://github.com/ANL-CEEESA/RELOG.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
901 B
43 lines
901 B
{
|
|
"name": "nanoid",
|
|
"version": "5.1.5",
|
|
"description": "A tiny (118 bytes), secure URL-friendly unique string ID generator",
|
|
"keywords": [
|
|
"uuid",
|
|
"random",
|
|
"id",
|
|
"url"
|
|
],
|
|
"type": "module",
|
|
"engines": {
|
|
"node": "^18 || >=20"
|
|
},
|
|
"funding": [
|
|
{
|
|
"type": "github",
|
|
"url": "https://github.com/sponsors/ai"
|
|
}
|
|
],
|
|
"author": "Andrey Sitnik <andrey@sitnik.ru>",
|
|
"license": "MIT",
|
|
"repository": "ai/nanoid",
|
|
"exports": {
|
|
".": {
|
|
"browser": "./index.browser.js",
|
|
"react-native": "./index.browser.js",
|
|
"default": "./index.js"
|
|
},
|
|
"./non-secure": "./non-secure/index.js",
|
|
"./package.json": "./package.json"
|
|
},
|
|
"browser": {
|
|
"./index.js": "./index.browser.js"
|
|
},
|
|
"react-native": {
|
|
"./index.js": "./index.browser.js"
|
|
},
|
|
"bin": "./bin/nanoid.js",
|
|
"sideEffects": false,
|
|
"types": "./index.d.ts"
|
|
}
|