@corentinth/friendly-ids
Version:
A human friendly ID generator
57 lines • 1.27 kB
JSON
{
"name": "@corentinth/friendly-ids",
"type": "module",
"version": "0.0.1",
"description": "A human friendly ID generator",
"author": "Corentin Thomasset <corentinth@proton.me> (https://corentin.tech)",
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/CorentinTh/friendly-ids"
},
"bugs": {
"url": "https://github.com/CorentinTh/friendly-ids/issues"
},
"keywords": [
"id",
"friendly",
"human",
"generator",
"readable",
"random",
"adjective",
"noun",
"unique"
],
"sideEffects": false,
"exports": {
".": {
"import": "./dist/index.mjs",
"require": "./dist/index.cjs"
}
},
"main": "./dist/index.cjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"dependencies": {},
"devDependencies": {
"@antfu/eslint-config": "^3.15.0",
"@vitest/coverage-v8": "3.0.3",
"bumpp": "^9.10.1",
"eslint": "^9.18.0",
"typescript": "^5.7.3",
"unbuild": "^3.3.1",
"vitest": "^3.0.3"
},
"scripts": {
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"test": "vitest run",
"test:watch": "vitest watch",
"build": "unbuild",
"typecheck": "tsc --noEmit",
"release": "bumpp --commit --tag --push"
}
}