mirror of
https://github.com/Xahau/xahau.js.git
synced 2025-11-04 13:05:49 +00:00
89 lines
3.2 KiB
JSON
89 lines
3.2 KiB
JSON
{
|
|
"name": "@transia/xrpl",
|
|
"publishConfig": {
|
|
"access": "public"
|
|
},
|
|
"version": "2.7.1-alpha.4",
|
|
"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-min.js.map",
|
|
"build/xrpl-latest.js",
|
|
"build/xrpl-latest.js.map"
|
|
],
|
|
"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",
|
|
"https-proxy-agent": false
|
|
},
|
|
"dependencies": {
|
|
"@transia/ripple-address-codec": "^4.2.6-alpha.0",
|
|
"@transia/ripple-binary-codec": "^1.4.4-alpha.1",
|
|
"@transia/ripple-keypairs": "^1.1.6-alpha.1",
|
|
"bignumber.js": "^9.0.0",
|
|
"bip32": "^2.0.6",
|
|
"bip39": "^3.0.4",
|
|
"https-proxy-agent": "^5.0.0",
|
|
"lodash": "^4.17.4",
|
|
"ws": "^8.2.2"
|
|
},
|
|
"devDependencies": {
|
|
"@geut/browser-node-core": "^2.0.13",
|
|
"@types/node": "^14.18.36",
|
|
"assert-browserify": "^2.0.0",
|
|
"browserify-fs": "^1.0.0",
|
|
"constants-browserify": "^1.0.0",
|
|
"https-browserify": "^1.0.0",
|
|
"karma": "^6.4.1",
|
|
"karma-chrome-launcher": "^3.1.1",
|
|
"karma-jasmine": "^5.1.0",
|
|
"karma-webpack": "^5.0.0",
|
|
"node-polyfill-webpack-plugin": "^2.0.1",
|
|
"react": "^18.2.0",
|
|
"typedoc": "^0.23.24"
|
|
},
|
|
"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 build coverage",
|
|
"docgen": "tsc --build tsconfig.docs.json && typedoc && echo js.xrpl.org >> ../../docs/CNAME",
|
|
"prepublish": "run-s clean build",
|
|
"test": "jest --verbose false --silent=false ./test/**/*.test.ts --testPathIgnorePatterns=./test/integration --testPathIgnorePatterns=./test/fixtures",
|
|
"test:integration": "TS_NODE_PROJECT=tsconfig.build.json jest --verbose false --silent=false --runInBand ./test/integration/**/*.test.ts",
|
|
"test:browser": "npm run build && npm run build:browserTests && karma start ./karma.config.js --single-run",
|
|
"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/Transia-RnD/xrpl.js/tree/beta"
|
|
},
|
|
"readmeFilename": "README.md",
|
|
"engines": {
|
|
"node": ">=10.13.0"
|
|
},
|
|
"gitHead": "3409d5631577c3f2d7e304c73ba19dee6219d6ce"
|
|
}
|