@nats-io/nuid
Version:
NUID - A highly performant unique identifier generator.
47 lines (46 loc) • 1.09 kB
JSON
{
"name": "@nats-io/nuid",
"version": "3.0.0",
"description": "NUID - A highly performant unique identifier generator.",
"main": "./lib/mod.js",
"types": "./lib/mod.d.ts",
"files": [
"lib/",
"LICENSE",
"README.md",
"MAINTAINERS.md",
"CODE-OF-CONDUCT.md"
],
"homepage": "https://nats.io/nuid.js",
"repository": {
"type": "git",
"url": "git@github.com:nats-io/nuid.js.git"
},
"bugs": {
"url": "https://github.com/nats-io/nuid.js/issues"
},
"license": "Apache-2.0",
"author": {
"name": "The NATS Authors"
},
"contributors": [],
"scripts": {
"clean": "rm -rf ./lib ./coverage ./docs",
"build": "npm run clean && tsc",
"test": "npm run build && node --test test/basics.js && deno test",
"doc": "node_modules/.bin/typedoc --out ./docs/ && touch ./docs/.nojekyll",
"prepack": "npm run clean && npm run build"
},
"engines": {
"node": ">= 22.x"
},
"keywords": [
"unique",
"identifier",
"generator"
],
"devDependencies": {
"typedoc": "0.28.19",
"typescript": "5.9.3"
}
}