{ "name": "ripple-address-codec", "version": "5.0.0", "description": "encodes/decodes base58 encoded XRP Ledger identifiers", "files": [ "dist/*", "src/*" ], "main": "dist/index.js", "types": "dist/index.d.ts", "license": "ISC", "dependencies": { "@scure/base": "^1.1.3", "@xrplf/isomorphic": "^1.0.0" }, "keywords": [ "ripple", "xrp", "xrp ledger", "xrpl" ], "repository": { "type": "git", "url": "git@github.com:XRPLF/xrpl.js.git" }, "prepublish": "tsc -b", "prepublishOnly": "tslint -b ./ && jest", "scripts": { "build": "tsc --build tsconfig.build.json", "test": "jest --verbose false --silent=false ./test/*.test.ts", "test:browser": "npm run build && karma start ./karma.config.js", "lint": "eslint . --ext .ts", "clean": "rm -rf ./dist ./coverage ./test/testCompiledForWeb tsconfig.build.tsbuildinfo" }, "prettier": "@xrplf/prettier-config", "engines": { "node": ">= 18" } }