mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-12-06 17:27:59 +00:00
* feat: Upgrade to Node 18 and remove cross-fetch (#2678) BREAKING CHANGE: fetch now relies on the native javascript environment in browsers and node.js Co-authored-by: justinr1234 <justinr1234@gmail.com>
42 lines
993 B
JSON
42 lines
993 B
JSON
{
|
|
"name": "ripple-keypairs",
|
|
"version": "2.0.0",
|
|
"description": "Cryptographic key pairs for the XRP Ledger",
|
|
"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",
|
|
"clean": "rm -rf ./dist ./coverage ./test/testCompiledForWeb tsconfig.build.tsbuildinfo",
|
|
"lint": "eslint . --ext .ts",
|
|
"prepublish": "npm run lint && npm test"
|
|
},
|
|
"files": [
|
|
"dist/*",
|
|
"src/*"
|
|
],
|
|
"main": "dist/",
|
|
"directories": {
|
|
"test": "test"
|
|
},
|
|
"dependencies": {
|
|
"@noble/curves": "^1.0.0",
|
|
"@xrplf/isomorphic": "^1.0.0",
|
|
"ripple-address-codec": "^5.0.0"
|
|
},
|
|
"keywords": [
|
|
"ripple",
|
|
"xrp",
|
|
"xrp ledger",
|
|
"xrpl"
|
|
],
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git@github.com:XRPLF/xrpl.js.git"
|
|
},
|
|
"license": "ISC",
|
|
"prettier": "@xrplf/prettier-config",
|
|
"engines": {
|
|
"node": ">= 18"
|
|
}
|
|
}
|