UNPKG

@nurliman/base85

Version:

Browser and Node.js-compatible Base85 encoder/decoder.

75 lines (74 loc) 1.94 kB
{ "name": "@nurliman/base85", "description": "Browser and Node.js-compatible Base85 encoder/decoder.", "version": "2.0.12", "type": "module", "publishConfig": { "access": "public" }, "license": "MIT", "author": { "name": "Nurliman Diara", "email": "nurlimandiara@gmail.com", "url": "https://nurliman.dev" }, "repository": { "type": "git", "url": "https://github.com/nurliman/base85.git" }, "keywords": [ "ascii", "base85", "ascii85", "z85", "encoder", "decoder", "encode", "decode", "browser", "node" ], "files": ["dist/"], "main": "./dist/index.cjs", "module": "./dist/index.js", "exports": { ".": { "require": "./dist/index.cjs", "import": "./dist/index.js" }, "./package.json": "./package.json" }, "types": "./dist/index.d.ts", "scripts": { "build": "tsup", "prebuild": "npm run check && npm run lint:fix", "test": "bun test", "check": "tsc --noEmit", "lint": "biome check .", "lint:fix": "biome check . --write", "lint-staged": "lint-staged", "changeset": "changeset", "version-packages": "changeset version", "deno:sync-version": "bun ./scripts/syncDenoVersion.ts", "deno:publish": "bunx jsr publish --allow-dirty", "release": "npm run build && npm run test && changeset publish", "prepare": "lefthook install" }, "devDependencies": { "@biomejs/biome": "^1.9.4", "@changesets/changelog-github": "^0.5.0", "@changesets/cli": "^2.27.10", "@tsconfig/recommended": "^1.0.8", "@types/bun": "latest", "@types/node": "^20", "lefthook": "^1.9.2", "lint-staged": "^15.2.11", "tsup": "^8.3.5", "typescript": "^5.7.2" }, "packageManager": "bun@1.1.38", "lint-staged": { "**/*.+(js|mjs|cjs|jsx|ts|cts|mts|tsx)": "biome check --write --no-errors-on-unmatched" }, "trustedDependencies": ["@biomejs/biome"] }