package.json 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899
  1. {
  2. "name": "@pythnetwork/price-pusher",
  3. "version": "10.2.0",
  4. "description": "Pyth Price Pusher",
  5. "homepage": "https://pyth.network",
  6. "main": "lib/index.js",
  7. "types": "lib/index.d.ts",
  8. "files": [
  9. "dist/**/*"
  10. ],
  11. "bin": {
  12. "pyth-price-pusher": "./lib/index.js"
  13. },
  14. "repository": {
  15. "type": "git",
  16. "url": "https://github.com/pyth-network/pyth-crosschain",
  17. "directory": "apps/price_pusher"
  18. },
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "scripts": {
  23. "build": "ts-duality",
  24. "fix:format": "prettier --write \"src/**/*.ts\"",
  25. "fix:lint": "eslint src/ --fix --max-warnings 0",
  26. "test:format": "prettier --check \"src/**/*.ts\"",
  27. "test:lint": "eslint src/ --max-warnings 0",
  28. "start": "node lib/index.js",
  29. "dev": "ts-node src/index.ts",
  30. "prepublishOnly": "pnpm run build && pnpm run test:lint",
  31. "preversion": "pnpm run test:lint",
  32. "version": "pnpm run test:format && pnpm run test:lint && git add -A src",
  33. "clean": "rm -rf ./dist"
  34. },
  35. "keywords": [
  36. "pyth",
  37. "oracle",
  38. "evm",
  39. "ethereum",
  40. "injective",
  41. "fuel",
  42. "aptos",
  43. "sui",
  44. "near"
  45. ],
  46. "license": "Apache-2.0",
  47. "devDependencies": {
  48. "@types/ethereum-protocol": "^1.0.2",
  49. "@types/express": "^4.17.21",
  50. "@types/jest": "^27.4.1",
  51. "@types/yargs": "^17.0.10",
  52. "@typescript-eslint/eslint-plugin": "^6.0.0",
  53. "@typescript-eslint/parser": "^6.0.0",
  54. "eslint": "^8.13.0",
  55. "jest": "^29.7.0",
  56. "pino-pretty": "^11.2.1",
  57. "prettier": "catalog:",
  58. "ts-jest": "^29.1.1",
  59. "ts-node": "catalog:"
  60. },
  61. "dependencies": {
  62. "@aptos-labs/ts-sdk": "^1.39.0",
  63. "@coral-xyz/anchor": "^0.30.0",
  64. "@injectivelabs/networks": "1.14.47",
  65. "@injectivelabs/sdk-ts": "1.14.50",
  66. "@injectivelabs/utils": "^1.14.48",
  67. "@mysten/sui": "^1.3.0",
  68. "@pythnetwork/hermes-client": "^1.3.1",
  69. "@pythnetwork/price-service-sdk": "workspace:^",
  70. "@pythnetwork/pyth-fuel-js": "workspace:*",
  71. "@pythnetwork/pyth-sdk-solidity": "workspace:*",
  72. "@pythnetwork/pyth-solana-receiver": "workspace:*",
  73. "@pythnetwork/pyth-sui-js": "workspace:*",
  74. "@pythnetwork/pyth-ton-js": "workspace:*",
  75. "@pythnetwork/solana-utils": "workspace:*",
  76. "@solana/web3.js": "^1.93.0",
  77. "@ton/core": "^0.59.0",
  78. "@ton/crypto": "^3.3.0",
  79. "@ton/ton": "^15.1.0",
  80. "@types/pino": "^7.0.5",
  81. "aptos": "^1.8.5",
  82. "express": "^4.18.2",
  83. "fuels": "catalog:",
  84. "jito-ts": "^3.0.1",
  85. "joi": "^17.6.0",
  86. "near-api-js": "^3.0.2",
  87. "pino": "^9.2.0",
  88. "prom-client": "^15.1.0",
  89. "viem": "^2.19.4",
  90. "yaml": "^2.1.1",
  91. "yargs": "^17.5.1"
  92. },
  93. "engines": {
  94. "node": ">=22.16.0",
  95. "pnpm": ">=10.19.0"
  96. },
  97. "packageManager": "pnpm@10.19.0",
  98. "type": "module"
  99. }