package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@certusone/wormhole-sdk-proto-node",
  3. "version": "0.0.7",
  4. "description": "NodeJS client protobuf for interacting with Wormhole",
  5. "homepage": "https://wormhole.com",
  6. "main": "./lib/cjs/index.js",
  7. "module": "./lib/esm/index.js",
  8. "files": [
  9. "lib/"
  10. ],
  11. "repository": "https://github.com/wormhole-foundation/wormhole/tree/main/sdk/js-proto-node",
  12. "scripts": {
  13. "build-deps": "cd ../.. && DOCKER_BUILDKIT=1 docker build --target node-export -f Dockerfile.proto -o type=local,dest=. .",
  14. "build-lib": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
  15. "build-all": "npm run build-deps && npm run build-lib",
  16. "build": "npm run build-all"
  17. },
  18. "keywords": [
  19. "wormhole",
  20. "sdk",
  21. "proto",
  22. "protobuf"
  23. ],
  24. "author": "certusone",
  25. "license": "Apache-2.0",
  26. "devDependencies": {
  27. "@types/long": "^4.0.2",
  28. "@types/node": "^18.0.3",
  29. "typescript": "^4.7.4"
  30. },
  31. "dependencies": {
  32. "@grpc/grpc-js": "^1.6.7",
  33. "protobufjs": "^7.0.0",
  34. "rxjs": "^7.5.6"
  35. },
  36. "overrides": {
  37. "elliptic": "^6.6.1"
  38. }
  39. }