smartunique/package.json
2024-05-29 14:16:52 +02:00

58 lines
1.3 KiB
JSON

{
"name": "@push.rocks/smartunique",
"version": "3.0.9",
"private": false,
"description": "A library to generate unique identifiers using methods like UUID and nanoid.",
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
"test": "(tstest test/)",
"build": "(tsbuild)",
"buildDocs": "tsdoc"
},
"repository": {
"type": "git",
"url": "https://code.foss.global/push.rocks/smartunique.git"
},
"keywords": [
"unique identifier",
"UUID",
"nanoid",
"shortid",
"TypeScript",
"security",
"randomness",
"uniqueness"
],
"devDependencies": {
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.5.0"
},
"dependencies": {
"@types/uuid": "^9.0.2",
"nanoid": "^4.0.2",
"uuid": "^9.0.0"
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
"dist_*/**/*",
"dist_ts/**/*",
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
],
"type": "module",
"browserslist": [
"last 1 chrome versions"
],
"homepage": "https://code.foss.global/push.rocks/smartunique"
}