package.json 1.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. {
  2. "name": "@pythnetwork/price-pusher",
  3. "version": "6.4.2",
  4. "description": "Pyth Price Pusher",
  5. "homepage": "https://pyth.network",
  6. "main": "lib/index.js",
  7. "types": "lib/index.d.ts",
  8. "files": [
  9. "lib/**/*"
  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": "price_pusher"
  18. },
  19. "publishConfig": {
  20. "access": "public"
  21. },
  22. "scripts": {
  23. "test": "jest src/ --passWithNoTests",
  24. "build": "tsc",
  25. "format": "prettier --write \"src/**/*.ts\"",
  26. "lint": "eslint src/",
  27. "start": "node lib/index.js",
  28. "dev": "ts-node src/index.ts",
  29. "prepublishOnly": "npm run build && npm test && npm run lint",
  30. "preversion": "npm run lint",
  31. "version": "npm run format && git add -A src"
  32. },
  33. "keywords": [
  34. "pyth",
  35. "oracle",
  36. "evm",
  37. "ethereum",
  38. "injective"
  39. ],
  40. "license": "Apache-2.0",
  41. "devDependencies": {
  42. "@types/ethereum-protocol": "^1.0.2",
  43. "@types/jest": "^27.4.1",
  44. "@types/yargs": "^17.0.10",
  45. "@typescript-eslint/eslint-plugin": "^5.20.0",
  46. "@typescript-eslint/parser": "^5.20.0",
  47. "eslint": "^8.13.0",
  48. "jest": "^29.7.0",
  49. "prettier": "^2.6.2",
  50. "ts-jest": "^29.1.1",
  51. "typescript": "^5.3.3"
  52. },
  53. "dependencies": {
  54. "@injectivelabs/sdk-ts": "1.10.72",
  55. "@pythnetwork/pyth-solana-receiver": "*",
  56. "@mysten/sui.js": "^0.49.1",
  57. "@pythnetwork/price-service-client": "*",
  58. "@pythnetwork/pyth-sdk-solidity": "*",
  59. "@pythnetwork/pyth-sui-js": "*",
  60. "@truffle/hdwallet-provider": "^2.1.3",
  61. "aptos": "^1.8.5",
  62. "joi": "^17.6.0",
  63. "near-api-js": "^3.0.2",
  64. "web3": "^1.8.1",
  65. "web3-eth-contract": "^1.8.1",
  66. "yaml": "^2.1.1",
  67. "yargs": "^17.5.1"
  68. }
  69. }