mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
This is done by properly deleting all build files. Package-lock was due to it not reflecting the license of @xrplf/secret-numbers. This was fixed by running `npm i`.
39 lines
907 B
JSON
39 lines
907 B
JSON
{
|
|
"name": "ripple-address-codec",
|
|
"version": "4.3.1",
|
|
"description": "encodes/decodes base58 encoded XRP Ledger identifiers",
|
|
"files": [
|
|
"dist/*",
|
|
"src/*"
|
|
],
|
|
"main": "dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"license": "ISC",
|
|
"dependencies": {
|
|
"base-x": "^3.0.9",
|
|
"create-hash": "^1.1.2"
|
|
},
|
|
"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",
|
|
"lint": "eslint . --ext .ts",
|
|
"clean": "rm -rf ./dist ./coverage ./test/testCompiledForWeb tsconfig.build.tsbuildinfo"
|
|
},
|
|
"prettier": "@xrplf/prettier-config",
|
|
"engines": {
|
|
"node": ">= 16"
|
|
}
|
|
}
|