UNPKG

base58-js

Version:

A light weight universal JavaScript base58 encoder / decoder.

71 lines (70 loc) 1.77 kB
{ "name": "base58-js", "version": "3.0.2", "description": "A light weight universal JavaScript base58 encoder / decoder.", "main": "index.js", "types": "index.d.ts", "repository": { "type": "git", "url": "git+https://github.com/pur3miish/base58-js.git" }, "type": "module", "keywords": [ "base58", "decode", "encode", "blockchain", "bitcoin" ], "author": "pur3miish", "license": "MIT", "engines": { "node": ">=16.0.0", "npm": ">=7.0.0" }, "exports": { ".": "./index.js", "./package.json": "./package.json", "./binary_to_base58": "./binary_to_base58.js", "./base58_to_binary": "./base58_to_binary.js", "./binary_to_base58.js": "./binary_to_base58.js", "./base58_to_binary.js": "./base58_to_binary.js" }, "sideEffects": false, "files": [ "base58_chars.js", "base58_to_binary.js", "base58_to_binary.d.ts", "binary_to_base58.js", "binary_to_base58.d.ts", "create_base58_map.js", "index.js", "index.d.ts" ], "browserslist": [ "defaults", "not IE 11" ], "bugs": { "url": "https://github.com/pur3miish/base58-js/issues" }, "scripts": { "eslint": "eslint .", "prettier": "prettier -c .", "prettier:readme": "prettier --write readme.md", "types": "tsc -p jsconfig.json", "tests": "mocha", "test": "npm run eslint && npm run prettier && npm run types && npm run tests", "prepublishOnly": "npm test" }, "homepage": "https://github.com/pur3miish/base58-js#readme", "devDependencies": { "@types/node": "^18.13.0", "chai": "^5.1.2", "eslint": "^8.34.0", "eslint-plugin-simple-import-sort": "^10.0.0", "mocha": "^11.0.1", "prettier": "^2.8.4", "typescript": "^4.9.5" } }