mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
40 lines
989 B
JSON
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"
|
|
}
|
|
}
|