package.json 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. {
  2. "name": "@wormhole-foundation/wormchain-sdk",
  3. "version": "0.0.1",
  4. "description": "Typescript SDK for interating with the Wormhole chain",
  5. "main": "lib/index.js",
  6. "files": [
  7. "lib/"
  8. ],
  9. "scripts": {
  10. "test": "jest --config jestconfig.json --verbose",
  11. "build": "npm run genTypes && tsc",
  12. "genTypes": "echo \"disabled: node src/buildHelper.cjs\""
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "git+https://github.com/wormhole-foundation/wormchain.git"
  17. },
  18. "author": "",
  19. "license": "ISC",
  20. "bugs": {
  21. "url": "https://github.com/wormhole-foundation/wormchain/issues"
  22. },
  23. "homepage": "https://github.com/wormhole-foundation/wormchain#readme",
  24. "dependencies": {
  25. "@certusone/wormhole-sdk": "^0.2.0",
  26. "@cosmjs/cosmwasm-stargate": "^0.27.1",
  27. "@cosmjs/launchpad": "^0.27.1",
  28. "@cosmjs/math": "^0.27.1",
  29. "@cosmjs/proto-signing": "^0.27.1",
  30. "@cosmjs/stargate": "^0.27.1",
  31. "@cosmjs/tendermint-rpc": "^0.27.1",
  32. "axios": "^0.26.0",
  33. "bech32": "^2.0.0",
  34. "elliptic": "^6.6.1",
  35. "ethers": "^5.5.4",
  36. "keccak256": "^1.0.6",
  37. "node-fetch": "^2.6.7",
  38. "protobufjs": "^6.11.2",
  39. "ts-jest": "^27.1.3",
  40. "tslint": "^6.1.3",
  41. "typescript": "^4.5.5"
  42. },
  43. "devDependencies": {
  44. "jest": "^27.5.1"
  45. },
  46. "overrides": {
  47. "elliptic": "^6.6.1"
  48. }
  49. }