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

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. {
  2. "name": "xrpio",
  3. "version": "0.1.2",
  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. "scripts": {
  16. "clean": "rm -rf gui/main.js gui/index.html gateway/main.js build lib docs",
  17. "start": "npm run build && npm run launch",
  18. "launch": "node ./lib/Launcher.js",
  19. "tsc": "tsc",
  20. "build": "npm run clean && tsc",
  21. "build-all": "npm run build && npm run webpack-gui",
  22. "webpack-gui": "webpack --config webpack.gui.js --progress && cp build/gui/main.js gui",
  23. "webpack-gateway": "webpack --config webpack.gateway.js --progress && cp build/gateway/main.js gateway",
  24. "test": "npm run build && mocha --bail=true ./lib/test/*.js",
  25. "deploy": "node ./lib/Deploy.js",
  26. "docs": "typedoc --out docs --readme ./README.md --plugin typedoc-plugin-markdown --hideBreadcrumbs ./src/index.ts"
  27. },
  28. "author": "nitowa",
  29. "license": "MIT",
  30. "dependencies": {
  31. "ripple-lib": "^1.10.0",
  32. "xrpl": "^2.1.1"
  33. },
  34. "devDependencies": {
  35. "@types/chai": "^4.2.21",
  36. "@types/mocha": "^8.2.2",
  37. "@types/node": "^14.14.37",
  38. "base-64": "^1.0.0",
  39. "browserify-zlib": "^0.2.0",
  40. "chai": "^4.3.4",
  41. "crypto-browserify": "^3.12.0",
  42. "mocha": "^9.2.0",
  43. "node-fetch": "^2.6.2",
  44. "process": "^0.11.10",
  45. "ts-loader": "^8.1.0",
  46. "typedoc": "^0.22.11",
  47. "typedoc-plugin-markdown": "^3.11.12",
  48. "typescript": "^4.5.0",
  49. "utf8": "^3.0.0",
  50. "wtfnode": "^0.9.1"
  51. }
  52. }