package.json 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  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": "dist/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": "ts-duality --noEsm",
  19. "start": "node dist/index.js",
  20. "fix:format": "prettier --write \"src/**/*.ts\"",
  21. "test:format": "prettier --check \"src/**/*.ts\"",
  22. "clean": "rm -rf ./dist"
  23. },
  24. "dependencies": {
  25. "@coral-xyz/anchor": "^0.29.0",
  26. "@injectivelabs/sdk-ts": "^1.10.72",
  27. "@pythnetwork/client": "catalog:",
  28. "@pythnetwork/xc-admin-common": "workspace:*",
  29. "@solana/web3.js": "^1.76.0",
  30. "@sqds/mesh": "^1.0.6",
  31. "@types/cors": "^2.8.17",
  32. "cors": "^2.8.5",
  33. "express": "^4.19.2",
  34. "ts-node": "catalog:"
  35. },
  36. "devDependencies": {
  37. "@types/express": "^4.17.21"
  38. },
  39. "engines": {
  40. "node": ">=22.16.0",
  41. "pnpm": ">=10.19.0"
  42. },
  43. "packageManager": "pnpm@10.19.0"
  44. }