UNPKG

6bithash

Version:

**Hash function package** for hashing id's ( in positive integer ) to an alphanumeric short string using a 6 bit map ( User can also prvide thier own Custom 6 bit map )

61 lines 1.27 kB
{ "name": "6bithash", "version": "1.0.5", "license": "MIT", "author": "Aniket Vishwakarma", "module": "./dist/index.mjs", "main": "./dist/index.js", "types": "./dist/index.d.ts", "devDependencies": { "@types/jest": "^29.5.14", "jest": "^29.7.0", "ts-jest": "^29.2.5", "tsup": "^8.3.5", "typescript": "^5.7.2" }, "files": [ "dist", "tsup.config.ts", "tsconfig.json", "Readme.md", "pnpm-lock.yaml", "License", ".gitignore", "jest.config.js", "src/index.ts", "src/customMap.ts", "src/types.ts", "tests" ], "repository": { "type": "git", "url": "git+https://github.com/Aniketvish0/6bithash.git" }, "keywords": [ "bit Mapping", "six bit hash", "TypeScript", "Executable", "npm package", "6bithash", "sixbithash", "custom bit Map", "nano ID", "short ID", "Id hashing", "Open Source", "bit mapping", "bit hashing", "hash function", "hashing algorithm" ], "bugs": { "url": "https://github.com/Aniketvish0/6bithash/issues" }, "homepage": "https://github.com/Aniketvish0/6bithash#readme", "scripts": { "build": "tsup src/index.ts --format cjs,esm --dts", "lint": "tsc", "test": "jest" } }