mirror of
				https://github.com/Xahau/xahau.js.git
				synced 2025-11-04 04:55:48 +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>
		
			
				
	
	
		
			40 lines
		
	
	
		
			988 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
			
		
		
	
	
			40 lines
		
	
	
		
			988 B
		
	
	
	
		
			JSON
		
	
	
	
	
	
{
 | 
						|
  "name": "ripple-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": [
 | 
						|
    "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",
 | 
						|
    "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"
 | 
						|
  }
 | 
						|
}
 |