mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
On installing `ripple-lib`, a warning is thrown for @types/base-x@3.0.6 since base-x now has types included. By upgrading base-x to at least 3.0.6, we no longer need the stub types. If we don't want to upgrade this dependency, an alternative approach would be to version lock `@types/base-x` to 3.0.4.
37 lines
820 B
JSON
37 lines
820 B
JSON
{
|
|
"name": "ripple-address-codec",
|
|
"version": "4.0.0",
|
|
"description": "encodes/decodes base58 encoded XRP Ledger identifiers",
|
|
"files": [
|
|
"dist/*",
|
|
"build/*"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"base-x": "3.0.7",
|
|
"create-hash": "^1.1.2"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/ripple/ripple-address-codec.git"
|
|
},
|
|
"prepublish": "tsc",
|
|
"prepublishOnly": "tslint -p ./ && jest",
|
|
"scripts": {
|
|
"compile": "tsc",
|
|
"test": "jest",
|
|
"lint": "tslint -p ./"
|
|
},
|
|
"devDependencies": {
|
|
"@types/jest": "^24.0.18",
|
|
"@types/node": "^10.12.0",
|
|
"jest": "^24.9.0",
|
|
"ts-jest": "^24.1.0",
|
|
"tslint": "^5.19.0",
|
|
"tslint-eslint-rules": "^5.4.0",
|
|
"typescript": "^3.1.3"
|
|
}
|
|
}
|