package.json 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839
  1. {
  2. "name": "@pythnetwork/xc-admin-proposer-server",
  3. "version": "0.0.0",
  4. "description": "A server that proposes the instructions that it receives to the multisig",
  5. "private": "true",
  6. "author": "",
  7. "homepage": "https://github.com/pyth-network/pyth-crosschain",
  8. "license": "ISC",
  9. "main": "src/index.ts",
  10. "repository": {
  11. "type": "git",
  12. "url": "git+https://github.com/pyth-network/pyth-crosschain.git"
  13. },
  14. "bugs": {
  15. "url": "https://github.com/pyth-network/pyth-crosschain/issues"
  16. },
  17. "scripts": {
  18. "build": "tsc",
  19. "start": "node lib/index.js",
  20. "fix:format": "prettier --write \"src/**/*.ts\"",
  21. "test:format": "prettier --check \"src/**/*.ts\""
  22. },
  23. "dependencies": {
  24. "@coral-xyz/anchor": "^0.29.0",
  25. "@injectivelabs/sdk-ts": "^1.10.72",
  26. "@pythnetwork/client": "catalog:",
  27. "@pythnetwork/xc-admin-common": "workspace:*",
  28. "@solana/web3.js": "^1.76.0",
  29. "@sqds/mesh": "^1.0.6",
  30. "@types/cors": "^2.8.17",
  31. "cors": "^2.8.5",
  32. "express": "^4.19.2",
  33. "ts-node": "^10.9.1"
  34. },
  35. "devDependencies": {
  36. "@types/express": "^4.17.21",
  37. "typescript": "^5.4.5"
  38. }
  39. }