UNPKG

memorable-ids

Version:

A flexible library for generating human-readable, memorable identifiers

74 lines 1.98 kB
{ "name": "memorable-ids", "version": "0.2.0", "description": "A flexible library for generating human-readable, memorable identifiers", "author": "Aris Ripandi <aris@duck.com>", "license": "MIT", "type": "module", "main": "dist/index.mjs", "types": "dist/index.d.mts", "devDependencies": { "@biomejs/biome": "1.9.4", "@types/node": "22.15.29", "c8": "10.1.3", "ts-node": "10.9.2", "typescript": "5.8.3", "unbuild": "3.5.0" }, "engines": { "node": ">=18.0.0" }, "exports": { ".": { "import": "./dist/index.mjs", "types": "./dist/index.d.mts" }, "./dictionary": { "import": "./dist/dictionary.mjs", "types": "./dist/dictionary.d.mts" } }, "files": [ "dist/**/*", "!tests/**/*", "!dist/**/*.*.map", "!tests/**/*.*.map", "package.json", "README.md", "LICENSE" ], "publishConfig": { "access": "public" }, "repository": { "type": "git", "url": "https://github.com/riipandi/memorable-ids.git" }, "bugs": { "url": "https://github.com/riipandi/memorable-ids/issues" }, "homepage": "https://github.com/riipandi/memorable-ids#readme", "keywords": [ "hri", "human-readable", "identifier", "ids", "memorable", "readable", "unique" ], "scripts": { "build": "unbuild", "format": "biome format . --write", "lint": "biome lint . --write", "check": "biome check . --write", "cleanup": "pnpm dlx rimraf dist node_modules", "postinstall": "pnpm approve-builds", "publish:jsr": "pnpm dlx jsr publish --allow-dirty", "release": "pnpm publish --no-git-checks && pnpm publish:jsr", "test": "node --no-warnings --test --loader ts-node/esm src/**/*.test.ts", "test:watch": "node --no-warnings --test --watch --loader ts-node/esm src/**/*.test.ts", "test:coverage": "c8 node --no-warnings --test --loader ts-node/esm src/**/*.test.ts", "typecheck": "tsc --noEmit" } }