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 2.1KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. {
  2. "name": "xrpio",
  3. "version": "0.2.3",
  4. "repository": {
  5. "type": "git",
  6. "url": "https://gitea.nitowa.xyz/npm-packages/xrpio.git"
  7. },
  8. "bugs": {
  9. "url": "https://gitea.nitowa.xyz/npm-packages/xrpio/issues",
  10. "email": "peter.millauer@gmail.com"
  11. },
  12. "homepage": "https://gitea.nitowa.xyz/docs/xrpio",
  13. "description": "XRP arbitrary data writer and reader",
  14. "main": "lib/src/index.js",
  15. "files": [
  16. "lib/src",
  17. "lib/browser"
  18. ],
  19. "scripts": {
  20. "clean": "rm -rf gui/main.js gui/index.html gateway/main.js build lib docs",
  21. "start": "npm run build && npm run launch",
  22. "launch": "node ./lib/Launcher.js",
  23. "tsc": "tsc",
  24. "build": "npm run clean && tsc && npm run webpack",
  25. "build-all": "npm run build && npm run webpack-gui",
  26. "webpack-gui": "webpack --config webpack.gui.js --progress && cp build/gui/main.js gui",
  27. "webpack-gateway": "webpack --config webpack.gateway.js --progress && cp build/gateway/main.js gateway",
  28. "test": "npm run build && mocha --bail=true ./lib/test/*.js",
  29. "deploy": "node ./lib/Deploy.js",
  30. "webpack": "webpack --config ./src/webpack.js",
  31. "docs": "typedoc --out docs --readme ./README.md --plugin typedoc-plugin-markdown --hideBreadcrumbs ./src/index.ts"
  32. },
  33. "author": "nitowa",
  34. "license": "MIT",
  35. "dependencies": {
  36. "ripple-lib": "^1.10.0",
  37. "xrpl": "^2.7.0"
  38. },
  39. "devDependencies": {
  40. "@types/chai": "^4.2.21",
  41. "@types/mocha": "^8.2.2",
  42. "@types/node": "^14.14.37",
  43. "base-64": "^1.0.0",
  44. "browserify-zlib": "^0.2.0",
  45. "buffer": "^6.0.3",
  46. "chai": "^4.3.4",
  47. "crypto-browserify": "^3.12.0",
  48. "https-browserify": "^1.0.0",
  49. "mocha": "^9.2.0",
  50. "net": "^1.0.2",
  51. "node-fetch": "^2.6.2",
  52. "process": "^0.11.10",
  53. "stream-browserify": "^3.0.0",
  54. "stream-http": "^3.2.0",
  55. "tls": "^0.0.1",
  56. "ts-loader": "^8.1.0",
  57. "typedoc": "^0.22.11",
  58. "typedoc-plugin-markdown": "^3.11.12",
  59. "typescript": "^4.5.0",
  60. "url": "^0.11.0",
  61. "utf8": "^3.0.0",
  62. "webpack": "^5.75.0",
  63. "webpack-cli": "^5.0.0",
  64. "wtfnode": "^0.9.1"
  65. }
  66. }