smartunique/package.json

58 lines
1.3 KiB
JSON
Raw Permalink Normal View History

2017-07-14 15:18:15 +00:00
{
2023-08-15 09:32:46 +00:00
"name": "@push.rocks/smartunique",
2024-04-24 16:34:34 +00:00
"version": "3.0.9",
2018-10-06 13:38:55 +00:00
"private": false,
2024-04-14 16:29:18 +00:00
"description": "A library to generate unique identifiers using methods like UUID and nanoid.",
2020-06-05 01:26:58 +00:00
"main": "dist_ts/index.js",
"typings": "dist_ts/index.d.ts",
2017-07-14 15:18:15 +00:00
"author": "Lossless GmbH",
"license": "MIT",
"scripts": {
2018-10-06 13:38:55 +00:00
"test": "(tstest test/)",
2023-08-15 09:32:46 +00:00
"build": "(tsbuild)",
"buildDocs": "tsdoc"
2017-07-14 15:18:15 +00:00
},
2017-07-17 15:01:10 +00:00
"repository": {
"type": "git",
2024-05-29 12:16:52 +00:00
"url": "https://code.foss.global/push.rocks/smartunique.git"
2017-07-17 15:01:10 +00:00
},
"keywords": [
2024-04-14 16:29:18 +00:00
"unique identifier",
"UUID",
"nanoid",
2017-07-17 15:01:10 +00:00
"shortid",
2024-04-14 16:29:18 +00:00
"TypeScript",
"security",
"randomness",
"uniqueness"
2017-07-17 15:01:10 +00:00
],
2017-07-14 15:18:15 +00:00
"devDependencies": {
2024-04-24 16:34:33 +00:00
"@git.zone/tsbuild": "^2.1.66",
"@git.zone/tsrun": "^1.2.44",
"@git.zone/tstest": "^1.0.77",
2023-08-15 09:32:46 +00:00
"@push.rocks/tapbundle": "^5.0.8",
"@types/node": "^20.5.0"
2017-07-14 15:18:15 +00:00
},
"dependencies": {
2023-08-15 09:32:46 +00:00
"@types/uuid": "^9.0.2",
"nanoid": "^4.0.2",
"uuid": "^9.0.0"
2020-03-05 20:39:44 +00:00
},
"files": [
"ts/**/*",
"ts_web/**/*",
"dist/**/*",
2020-06-05 01:26:58 +00:00
"dist_*/**/*",
"dist_ts/**/*",
2020-03-05 20:39:44 +00:00
"dist_ts_web/**/*",
"assets/**/*",
"cli.js",
"npmextra.json",
"readme.md"
2023-08-15 09:32:46 +00:00
],
"type": "module",
"browserslist": [
"last 1 chrome versions"
2024-05-29 12:16:52 +00:00
],
"homepage": "https://code.foss.global/push.rocks/smartunique"
}