{ "name": "xrpl", "version": "2.14.1", "license": "ISC", "description": "A TypeScript/JavaScript API for interacting with the XRP Ledger in Node.js and the browser", "files": [ "build/xrpl-latest-min.js", "build/xrpl-latest-min.js.map", "build/xrpl-latest.js", "build/xrpl-latest.js.map", "dist/npm/*", "src/*" ], "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": { "@xrplf/secret-numbers": "^1.0.0", "bignumber.js": "^9.0.0", "bip32": "^2.0.6", "bip39": "^3.0.4", "cross-fetch": "^4.0.0", "ripple-address-codec": "^4.3.1", "ripple-binary-codec": "^1.11.0", "ripple-keypairs": "^1.3.1", "ws": "^8.2.2" }, "devDependencies": { "@types/node": "^16.18.38", "https-proxy-agent": "^7.0.1", "karma": "^6.4.1", "karma-chrome-launcher": "^3.1.1", "karma-jasmine": "^5.1.0", "karma-webpack": "^5.0.0", "lodash": "^4.17.4", "run-s": "^0.0.0", "react": "^18.2.0", "typedoc": "0.25.0" }, "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": "webpack --analyze", "watch": "run-s build:lib --watch", "clean": "rm -rf ./dist ./coverage ./test/testCompiledForWeb tsconfig.build.tsbuildinfo", "docgen": "tsc --build tsconfig.docs.json && typedoc && echo js.xrpl.org >> ../../docs/CNAME", "prepare": "copyfiles ../../README.md xrpl/README.md", "prepublish": "run-s clean build", "test": "jest --config=jest.config.unit.js --verbose false --silent=false", "test:integration": "TS_NODE_PROJECT=tsconfig.build.json jest --config=jest.config.integration.js --verbose false --silent=false --runInBand", "test:browser": "npm run build && npm run build:browserTests && karma start ./karma.config.js", "test:watch": "jest --watch --verbose false --silent=false --runInBand ./test/**/*.test.ts --testPathIgnorePatterns=./test/integration --testPathIgnorePatterns=./test/fixtures", "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": "@xrplf/prettier-config", "repository": { "type": "git", "url": "git@github.com:XRPLF/xrpl.js.git" }, "readmeFilename": "README.md", "keywords": [ "ripple-lib", "ripple", "xrp", "xrp ledger", "xrpl" ], "engines": { "node": ">=16.0.0" } }