@shgysk8zer0/suid
Version:
Simple/Sortable Unique IDentifiers
88 lines (87 loc) • 2.32 kB
JSON
{
"name": "@shgysk8zer0/suid",
"version": "1.0.0",
"description": "Simple/Sortable Unique IDentifiers",
"keywords": [
"uuid",
"suid",
"random",
"identifier",
"guid",
"crypto",
"cryptography"
],
"type": "module",
"main": "./suid.cjs",
"module": "./suid.js",
"unpkg": "./suid.min.js",
"exports": {
".": {
"import": "./suid.js",
"require": "./suid.cjs"
},
"./*.js": {
"import": "./*.js",
"require": "./*.cjs"
},
"./*.mjs": {
"import": "./*.js",
"require": "./*.cjs"
},
"./*.cjs": {
"import": "./*.js",
"require": "./*.cjs"
},
"./*": {
"import": "./*.js",
"require": "./*.cjs"
}
},
"engines": {
"node": ">=18.0.0"
},
"private": false,
"scripts": {
"test": "npm run lint:js && npm run run:tests",
"preversion": "npm test && npm run build",
"prepare": "npm test && npm run build",
"lint:js": "eslint .",
"fix:js": "eslint . --fix",
"build": "npm run build:js",
"run:tests": "node --test",
"clean": "rm -f ./*.cjs",
"build:js": "npm run clean && rollup -c rollup.config.js",
"create:lock": "npm i --package-lock-only --ignore-scripts --no-audit --no-fund",
"version:bump": "npm run version:bump:patch",
"version:bump:patch": "npm version --no-git-tag-version patch && npm run create:lock",
"version:bump:minor": "npm version --no-git-tag-version minor && npm run create:lock",
"version:bump:major": "npm version --no-git-tag-version major && npm run create:lock"
},
"repository": {
"type": "git",
"url": "git+https://github.com/shgysk8zer0/suid.git"
},
"author": "Chris Zuber <admin@kernvalley.us>",
"license": "MIT",
"funding": [
{
"type": "librepay",
"url": "https://liberapay.com/shgysk8zer0"
},
{
"type": "github",
"url": "https://github.com/sponsors/shgysk8zer0"
}
],
"bugs": {
"url": "https://github.com/shgysk8zer0/suid/issues"
},
"homepage": "https://github.com/shgysk8zer0/suid#readme",
"devDependencies": {
"@rollup/plugin-node-resolve": "^15.3.0",
"@shgysk8zer0/eslint-config": "^1.0.3",
"@shgysk8zer0/js-utils": "^1.0.2",
"@shgysk8zer0/npm-utils": "^1.1.3",
"@shgysk8zer0/polyfills": "^0.4.7"
}
}