package.json 1.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. {
  2. "name": "@pythnetwork/xc-admin-proposer-server",
  3. "version": "0.1.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.cjs",
  10. "type": "module",
  11. "repository": {
  12. "type": "git",
  13. "url": "git+https://github.com/pyth-network/pyth-crosschain.git"
  14. },
  15. "bugs": {
  16. "url": "https://github.com/pyth-network/pyth-crosschain/issues"
  17. },
  18. "scripts": {
  19. "build": "ts-duality --noEsm",
  20. "start": "node dist/index.js",
  21. "fix:format": "prettier --write \"src/**/*.ts\"",
  22. "test:format": "prettier --check \"src/**/*.ts\"",
  23. "clean": "rm -rf ./dist"
  24. },
  25. "dependencies": {
  26. "@coral-xyz/anchor": "^0.29.0",
  27. "@injectivelabs/sdk-ts": "^1.10.72",
  28. "@pythnetwork/client": "catalog:",
  29. "@pythnetwork/xc-admin-common": "workspace:*",
  30. "@solana/web3.js": "^1.76.0",
  31. "@sqds/mesh": "^1.0.6",
  32. "@types/cors": "^2.8.17",
  33. "cors": "^2.8.5",
  34. "express": "^4.19.2",
  35. "ts-node": "catalog:"
  36. },
  37. "devDependencies": {
  38. "@types/express": "^4.17.21"
  39. },
  40. "engines": {
  41. "node": ">=22.14.0"
  42. },
  43. "exports": {
  44. ".": {
  45. "types": "./dist/index.d.ts",
  46. "default": "./dist/index.cjs"
  47. },
  48. "./package.json": "./package.json"
  49. },
  50. "types": "./dist/index.d.ts"
  51. }