{
  "name": "xrpl",
  "version": "2.1.6",
  "license": "ISC",
  "description": "A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser",
  "files": [
    "dist/npm/*",
    "build/xrpl-latest-min.js",
    "build/xrpl-latest.js"
  ],
  "main": "dist/npm/",
  "unpkg": "build/xrpl-latest-min.js",
  "jsdelivr": "build/xrpl-latest-min.js",
  "types": "dist/npm/index.d.ts",
  "directories": {
    "test": "test"
  },
  "browser": {
    "ws": "./dist/npm/client/WSWrapper.js"
  },
  "dependencies": {
    "bignumber.js": "^9.0.0",
    "bip32": "^2.0.6",
    "bip39": "^3.0.4",
    "https-proxy-agent": "^5.0.0",
    "lodash": "^4.17.4",
    "ripple-address-codec": "^4.2.3",
    "ripple-binary-codec": "^1.3.0",
    "ripple-keypairs": "^1.1.3",
    "ws": "^8.2.2"
  },
  "devDependencies": {
    "xrpl-local": "file:./src"
  },
  "resolutions": {
    "elliptic": "^6.5.4"
  },
  "scripts": {
    "build": "run-s build:lib build:snippets build:web",
    "build:snippets": "tsc --build ./snippets/tsconfig.json",
    "build:lib": "tsc --build tsconfig.build.json",
    "build:web": "webpack",
    "build:browserTests": "webpack --config ./test/webpack.config.js",
    "analyze": "run-s build:web --analyze",
    "watch": "run-s build:lib --watch",
    "clean": "rm -rf dist",
    "docgen": "typedoc && echo js.xrpl.org >> ../../docs/CNAME",
    "prepublish": "run-s clean build",
    "test": "nyc mocha --config=test/.mocharc.json --exit",
    "test:integration": "TS_NODE_PROJECT=tsconfig.build.json nyc mocha ./test/integration/**/*.ts ./test/integration/*.ts",
    "test:browser": "npm run build:browserTests && TS_NODE_PROJECT=tsconfig.build.json nyc mocha ./test/browser/*.ts",
    "test:watch": "TS_NODE_PROJECT=src/tsconfig.json mocha --config=test/.mocharc.json --watch --reporter dot",
    "format": "prettier --write '{src,test}/**/*.ts'",
    "lint": "eslint . --ext .ts --max-warnings 0",
    "perf": "./scripts/perf_test.sh",
    "compile:snippets": "tsc -p snippets/tsconfig.json",
    "start:snippet": "npm run compile:snippets && node",
    "inspect:snippet": "npm run compile:snippets && node inspect"
  },
  "prettier": "@lnssh/prettier-config",
  "repository": {
    "type": "git",
    "url": "git+ssh://git@github.com/ln1778/xrpl.js.git"
  },
  "engines": {
    "node": ">=10.13.0"
  },
  "bugs": {
    "url": "https://github.com/ln1778/xrpl.js/issues"
  },
  "homepage": "https://github.com/ln1778/xrpl.js#readme",
  "author": ""
}
