UNPKG

@mhysko/s-uuid

Version:

Translate standard UUID to Base68 format and back

87 lines (86 loc) 1.99 kB
{ "name": "@mhysko/s-uuid", "version": "1.1.0", "description": "Translate standard UUID to Base68 format and back", "type": "module", "homepage": "https://github.com/mvhysko/s-uuid#readme", "repository": { "type": "git", "url": "git+https://github.com/mvhysko/s-uuid.git" }, "bugs": { "url": "https://github.com/mvhysko/s-uuid/issues" }, "directories": { "test": "tests" }, "types": "dist/index.d.ts", "main": "dist/cjs/index.js", "module": "dist/esm/index.js", "exports": { ".": { "import": "./dist/esm/index.js", "require": "./dist/cjs/index.js", "default": "./dist/esm/index.js" }, "./package.json": "./package.json" }, "files": [ "dist" ], "scripts": { "build": "./build.sh", "test": "jest --coverage", "lint": "eslint src tests", "format": "prettier --write . && prettier --check .", "husky": "husky", "semantic-release": "semantic-release", "prepare": "is-ci || husky install" }, "keywords": [ "uuid", "guid", "uid", "node", "rfc4122", "rfc9562" ], "author": "Maksym Hysko <hysko.mv@gmail.com>", "license": "MIT", "commitlint": { "extends": [ "@commitlint/config-conventional" ] }, "lint-staged": { "*": [ "prettier --write" ], "*.ts": [ "eslint --fix" ] }, "dependencies": { "uuid": "^11.1.0" }, "devDependencies": { "@commitlint/cli": "^19.8.0", "@commitlint/config-conventional": "^19.8.0", "@eslint/js": "^9.23.0", "@types/jest": "^29.5.14", "eslint": "^9.23.0", "eslint-config-prettier": "^10.1.1", "eslint-plugin-prettier": "^5.2.6", "husky": "^9.1.7", "is-ci": "^4.1.0", "jest": "^29.7.0", "lint-staged": "^15.5.0", "prettier": "^3.5.3", "rimraf": "^6.0.1", "semantic-release": "^24.2.3", "ts-jest": "^29.3.1", "ts-node": "^10.9.2", "typescript": "^5.8.3", "typescript-eslint": "^8.29.0" } }