Files
xahau.js/packages/xahau-address-codec/package.json
Denis Angell 7916a14be2 refactor
2025-03-11 14:31:34 +01:00

40 lines
989 B
JSON

{
"name": "xahau-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": [
"xahau",
"xah",
"xahau ledger",
"xahau"
],
"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"
}
}