UNPKG

@ctrl/ts-base32

Version:

Base32 encoder/decoder with support for multiple variants

61 lines (60 loc) 1.58 kB
{ "name": "@ctrl/ts-base32", "version": "4.0.0", "description": "Base32 encoder/decoder with support for multiple variants", "author": "Scott Cooper <scttcper@gmail.com>", "license": "MIT", "repository": "scttcper/ts-base32", "homepage": "https://ts-base32.vercel.app", "keywords": [ "base32", "rfc3548", "rfc4648", "crockford", "typescript" ], "type": "module", "exports": "./dist/src/index.js", "types": "./dist/src/index.d.ts", "files": [ "dist/src" ], "sideEffects": false, "scripts": { "demo:build": "pnpm run -r build", "demo:watch": "pnpm run -r dev", "lint": "pnpm run '/^(lint:biome|lint:eslint)$/'", "lint:biome": "biome check .", "lint:eslint": "eslint --ext .ts,.tsx .", "lint:fix": "pnpm run '/^(lint:biome|lint:eslint):fix$/'", "lint:eslint:fix": "eslint --ext .ts,.tsx . --fix", "lint:biome:fix": "biome check . --apply", "prepare": "npm run build", "build": "tsc", "test": "vitest run", "test:watch": "vitest", "test:ci": "vitest run --coverage --reporter=junit --outputFile=./junit.xml" }, "devDependencies": { "@biomejs/biome": "1.5.3", "@ctrl/eslint-config-biome": "2.0.9", "@sindresorhus/tsconfig": "5.0.0", "@types/node": "20.11.24", "@vitest/coverage-v8": "1.3.1", "typescript": "5.3.3", "uint8array-extras": "^1.1.0", "vitest": "1.3.1" }, "publishConfig": { "access": "public", "provenance": true }, "release": { "branches": [ "master" ] }, "engines": { "node": ">=18" } }