@storm-stack/unique-identifier
Version:
This package provides a simple way to generate various types of unique identifiers.
96 lines • 2.29 kB
JSON
{
"name": "@storm-stack/unique-identifier",
"version": "1.33.0",
"type": "module",
"description": "This package provides a simple way to generate various types of unique identifiers.",
"repository": {
"type": "github",
"url": "https://github.com/storm-software/storm-stack.git",
"directory": "packages/unique-identifier"
},
"private": false,
"dependencies": {
"@noble/hashes": "1.5.0"
},
"publishConfig": {
"access": "public"
},
"sideEffects": false,
"funding": {
"type": "github",
"url": "https://github.com/sponsors/storm-software"
},
"files": [
"dist/**/*"
],
"homepage": "https://stormsoftware.com",
"bugs": {
"url": "https://stormsoftware.com/support",
"email": "support@stormsoftware.com"
},
"license": "Apache-2.0",
"keywords": [
"storm-stack",
"storm-software",
"storm",
"stormstack",
"storm-ops",
"acidic",
"acidic-lang",
"acidic-model",
"cyclone-ui",
"nextjs",
"prisma",
"graphql",
"sullivanpj",
"monorepo"
],
"author": {
"name": "Storm Software",
"email": "contact@stormsoftware.com",
"url": "https://stormsoftware.com"
},
"contributors": [
{
"name": "Storm Software",
"email": "contact@stormsoftware.com",
"url": "https://stormsoftware.com"
}
],
"exports": {
"./package.json": "./package.json",
"./uuid": {
"import": "./dist/uuid.mjs",
"require": "./dist/uuid.cjs",
"types": "./dist/uuid.d.ts"
},
"./snowflake": {
"import": "./dist/snowflake.mjs",
"require": "./dist/snowflake.cjs",
"types": "./dist/snowflake.d.ts"
},
"./random": {
"import": "./dist/random.mjs",
"require": "./dist/random.cjs",
"types": "./dist/random.d.ts"
},
"./index": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
},
"./cuid": {
"import": "./dist/cuid.mjs",
"require": "./dist/cuid.cjs",
"types": "./dist/cuid.d.ts"
},
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs",
"types": "./dist/index.d.ts"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts"
}