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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "rjsvm",
  3. "version": "0.2.4",
  4. "description": "",
  5. "main": "lib/src/main.js",
  6. "scripts": {
  7. "clean": "rm -rf lib",
  8. "start": "npm run build && npm run launch",
  9. "build": "npm run clean && npm run tsc",
  10. "launch": "node lib/launcher.js",
  11. "test": "npm run clean && npm run build && mocha --bail=true lib/test/Test.js",
  12. "tsc": "tsc",
  13. "webpack": "webpack --config ./webpack.js"
  14. },
  15. "author": "",
  16. "license": "ISC",
  17. "dependencies": {
  18. "stream-http": "^3.2.0",
  19. "url": "^0.11.3",
  20. "xrpio": "^0.2.1",
  21. "xrpl": "^2.7.0",
  22. "zod": "^3.21.4"
  23. },
  24. "devDependencies": {
  25. "@types/chai": "^4.3.6",
  26. "@types/expect": "^1.20.4",
  27. "@types/mocha": "^5.2.7",
  28. "@types/node": "^18.11.9",
  29. "browserify-zlib": "^0.2.0",
  30. "buffer": "^6.0.3",
  31. "chai": "^4.3.4",
  32. "chai-as-promised": "^7.1.1",
  33. "crypto-browserify": "^3.12.0",
  34. "https-browserify": "^1.0.0",
  35. "mocha": "^6.2.0",
  36. "process": "^0.11.10",
  37. "stream-browserify": "^3.0.0",
  38. "ts-loader": "^9.5.0",
  39. "ts-mocha": "^6.0.0",
  40. "typescript": "^4.9.3",
  41. "webpack": "^5.88.2",
  42. "webpack-cli": "^5.1.4",
  43. "webpack-utf8-bom": "^1.4.0"
  44. },
  45. "files": [
  46. "lib/src/main.js",
  47. "lib/src/main.d.ts",
  48. "lib/src/util/*",
  49. "lib/src/RJSVM/*"
  50. ]
  51. }