You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

package.json 1.5KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {
  2. "name": "xrpio",
  3. "version": "0.0.1",
  4. "description": "XRP arbitrary data writer and reader",
  5. "main": "lib/src/xrpIO/ripple-bindings.js",
  6. "scripts": {
  7. "clean": "rm -rf gui/main.js gui/index.html gateway/main.js build lib docs",
  8. "start": "npm run build && npm run launch",
  9. "launch": "node ./lib/Launcher.js",
  10. "tsc": "tsc",
  11. "build": "npm run clean && tsc",
  12. "build-all": "npm run build && npm run webpack-gui",
  13. "webpack-gui": "webpack --config webpack.gui.js --progress && cp build/gui/main.js gui",
  14. "webpack-gateway": "webpack --config webpack.gateway.js --progress && cp build/gateway/main.js gateway",
  15. "test": "npm run build && mocha --bail=true ./lib/test/*.js",
  16. "deploy": "node ./lib/Deploy.js",
  17. "docs": "typedoc --out docs --readme ./README.md --plugin typedoc-plugin-markdown --hideBreadcrumbs ./src/xrpIO/ripple-binding.ts"
  18. },
  19. "author": "nitowa",
  20. "license": "MIT",
  21. "dependencies": {
  22. "ripple-lib": "^1.9.3"
  23. },
  24. "devDependencies": {
  25. "@types/chai": "^4.2.21",
  26. "@types/mocha": "^8.2.2",
  27. "@types/node": "^14.14.37",
  28. "base-64": "^1.0.0",
  29. "browserify-zlib": "^0.2.0",
  30. "chai": "^4.3.4",
  31. "crypto-browserify": "^3.12.0",
  32. "mocha": "^8.3.2",
  33. "node-fetch": "^2.6.1",
  34. "process": "^0.11.10",
  35. "ts-loader": "^8.1.0",
  36. "typedoc": "^0.22.11",
  37. "typedoc-plugin-markdown": "^3.11.12",
  38. "typescript": "^3.9.5",
  39. "utf8": "^3.0.0",
  40. "webpack": "^5.30.0",
  41. "webpack-bundle-analyzer": "^4.4.0",
  42. "webpack-cli": "^4.6.0"
  43. }
  44. }