package.json 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. {
  2. "name": "@wormhole-foundation/wormhole-cli",
  3. "version": "0.0.4",
  4. "sideEffects": [
  5. "src/side-effects.ts"
  6. ],
  7. "description": "CLI for Wormhole related activities",
  8. "homepage": "https://wormhole.com",
  9. "bin": {
  10. "worm": "./build/main.js"
  11. },
  12. "files": [
  13. "build/"
  14. ],
  15. "repository": "https://github.com/certusone/wormhole/tree/main/clients/js",
  16. "scripts": {
  17. "start": "npm run build && node ./build/main.js",
  18. "build": "esbuild src/main.ts --bundle --outfile=build/main.js --minify --platform=node --target=node22",
  19. "check": "tsc --noEmit",
  20. "docs": "npx tsx src/doc.ts",
  21. "prepublishOnly": "npm run check",
  22. "test": "jest"
  23. },
  24. "author": "Wormhole Contributors",
  25. "license": "Apache-2.0",
  26. "keywords": [
  27. "wormhole",
  28. "bridge",
  29. "cli"
  30. ],
  31. "dependencies": {
  32. "@celo-tools/celo-ethers-wrapper": "^0.1.0",
  33. "@certusone/wormhole-sdk": "^0.10.18",
  34. "@cosmjs/encoding": "^0.26.2",
  35. "@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
  36. "@injectivelabs/networks": "^1.10.7",
  37. "@injectivelabs/sdk-ts": "^1.10.47",
  38. "@injectivelabs/utils": "^1.10.5",
  39. "@mysten/sui.js": "^0.32.2",
  40. "@sei-js/core": "^1.3.2",
  41. "@solana/spl-token": "^0.3.5",
  42. "@solana/web3.js": "^1.22.0",
  43. "@terra-money/terra.js": "^3.1.9",
  44. "@types/config": "^3.3.0",
  45. "@wormhole-foundation/sdk": "^0.9.0",
  46. "@xpla/xpla.js": "^0.2.1",
  47. "algosdk": "^2.4.0",
  48. "aptos": "^1.3.16",
  49. "axios": "^0.24.0",
  50. "base-64": "^1.0.0",
  51. "bech32": "^2.0.0",
  52. "binary-parser": "^2.0.2",
  53. "bn.js": "^5.2.0",
  54. "bs58": "^4.0.1",
  55. "buffer-layout": "^1.2.2",
  56. "config": "^3.3.7",
  57. "dotenv": "^10.0.0",
  58. "esbuild": "0.25.5",
  59. "ethers": "^5.6.8",
  60. "js-base64": "^3.6.1",
  61. "near-api-js": "^1.0.0",
  62. "near-seed-phrase": "^0.2.0",
  63. "yargs": "^17.7.2"
  64. },
  65. "devDependencies": {
  66. "@truffle/hdwallet-provider": "^2.0.15",
  67. "@types/bn.js": "^5.1.0",
  68. "@types/bs58": "^4.0.1",
  69. "@types/jest": "^29.5.12",
  70. "@types/node": "^20.12.12",
  71. "@types/node-fetch": "^2.6.3",
  72. "@types/yargs": "^17.0.24",
  73. "copy-dir": "^1.3.0",
  74. "jest": "^29.7.0",
  75. "ts-jest": "^29.1.2",
  76. "tsx": "^4.12.0",
  77. "typescript": "^5.4.5"
  78. },
  79. "overrides": {
  80. "elliptic": "^6.6.1"
  81. }
  82. }