{
  "name": "bs58-77",
  "version": "6.0.1",
  "type": "module",
  "description": "Base 58 encoding / decoding",
  "keywords": [
    "base58",
    "bitcoin",
    "crypto",
    "crytography",
    "decode",
    "decoding",
    "encode",
    "encoding",
    "litecoin"
  ],
  "license": "MIT",
  "devDependencies": {
    "@types/node": "^20.14.8",
    "rimraf": "^5.0.7",
    "tape": "^5.3.0",
    "ts-standard": "^12.0.2",
    "typescript": "^5.5.2"
  },
  "repository": {
    "url": "git+https://github.com/cryptocoinjs/bs58.git",
    "type": "git"
  },
  "files": [
    "src"
  ],
  "main": "src/cjs/index.cjs",
  "module": "src/esm/index.js",
  "types": "src/cjs/index.d.ts",
  "exports": {
    ".": {
      "import": {
        "types": "./src/esm/index.d.ts",
        "default": "./src/esm/index.js"
      },
      "require": {
        "types": "./src/cjs/index.d.cts",
        "default": "./src/cjs/index.cjs"
      }
    }
  },
  "scripts": {
    "build": "npm run clean && tsc -p ./tsconfig.json && tsc -p ./tsconfig.cjs.json",
    "clean": "rimraf src",
    "gitdiff": "npm run build && git diff --exit-code",
    "postbuild": "find src/cjs -type f \\( -name \"*.js\" -o -name \"*.ts\" \\) -exec bash -c 'ext=\"${0##*.}\"; mv \"$0\" \"${0%.$ext}.c$ext\"' {} \\;",
    "standard": "ts-standard --ignore src --ignore test",
    "test": "npm run standard && npm run unit",
    "unit": "tape test/index.js"
  },
  "dependencies": {
    "base65-77x": "^5.0.1"
  },
  "directories": {
    "test": "test"
  },
  "author": "",
  "bugs": {
    "url": "https://github.com/cryptocoinjs/bs58/issues"
  },
  "homepage": "https://github.com/cryptocoinjs/bs58#readme"
}
