@ctrl/ts-base32
Version:
Base32 encoder/decoder with support for multiple variants
65 lines (64 loc) • 1.52 kB
JSON
{
"name": "@ctrl/ts-base32",
"version": "4.2.2",
"description": "Base32 encoder/decoder with support for multiple variants",
"keywords": [
"base32",
"crockford",
"rfc3548",
"rfc4648",
"typescript"
],
"homepage": "https://ts-base32.ep.workers.dev",
"license": "MIT",
"author": "Scott Cooper <scttcper@gmail.com>",
"repository": {
"type": "git",
"url": "git+https://github.com/scttcper/ts-base32.git"
},
"files": [
"dist/src"
],
"type": "module",
"sideEffects": false,
"types": "./dist/src/index.d.ts",
"exports": "./dist/src/index.js",
"publishConfig": {
"access": "public",
"provenance": true
},
"scripts": {
"demo:build": "pnpm run -r build",
"demo:watch": "pnpm run -r dev",
"lint": "oxlint . && oxfmt --check",
"lint:fix": "oxlint . --fix && oxfmt",
"prepare": "npm run build",
"build": "tsc",
"bench": "pnpm build && node test/benchmark.mjs",
"test": "vitest run",
"test:watch": "vitest"
},
"devDependencies": {
"@ctrl/oxlint-config": "1.4.0",
"@exodus/bytes": "^1.14.1",
"@scure/base": "^2.0.0",
"@sindresorhus/tsconfig": "8.1.0",
"@types/node": "25.2.3",
"base32-decode": "^1.0.0",
"base32-encode": "^2.0.0",
"oxfmt": "0.33.0",
"oxlint": "1.48.0",
"tinybench": "^6.0.0",
"typescript": "5.9.3",
"uint8array-extras": "1.5.0",
"vitest": "4.0.18"
},
"release": {
"branches": [
"master"
]
},
"engines": {
"node": ">20"
}
}