package.json 1.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. {
  2. "name": "@wormhole-foundation/offchain-generic-relayer",
  3. "version": "0.1.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "start": "tsx src/app.ts --flag=testnet",
  8. "testnet": "tsx src/app.ts --flag=testnet",
  9. "tilt": "tsx src/app.ts --flag=tilt",
  10. "tiltkub": "tsx src/app.ts --flag=tiltkub",
  11. "prettier": "prettier --write .",
  12. "build": "tsc",
  13. "typecheck": "tsc --noEmit --skipLibCheck",
  14. "watch": "tsc --watch",
  15. "test": "echo \"Error: no test specified\" && exit 1"
  16. },
  17. "author": "Joe Howarth",
  18. "license": "ISC",
  19. "dependencies": {
  20. "@certusone/wormhole-sdk": "^0.9.21-beta.0",
  21. "@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
  22. "@types/clone": "^2.1.1",
  23. "@types/koa": "^2.13.5",
  24. "clone": "^2.1.2",
  25. "koa": "^2.14.1",
  26. "koa-router": "^12.0.0",
  27. "relayer-engine": "github:wormhole-foundation/relayer-engine#7698ed6",
  28. "yargs": "^17.7.1"
  29. },
  30. "peerDependencies": {
  31. "ethers": "^5",
  32. "winston": "3.8.2"
  33. },
  34. "devDependencies": {
  35. "@types/koa-router": "^7.4.4",
  36. "@types/yargs": "^17.0.23",
  37. "nodemon": "^2.0.20",
  38. "prettier": "^2.8.7",
  39. "tsx": "^3.12.7",
  40. "typescript": "^4.8.4",
  41. "winston": "3.8.2"
  42. },
  43. "overrides": {
  44. "elliptic": "^6.6.1"
  45. }
  46. }