package.json 1.0 KB

123456789101112131415161718192021222324252627282930313233
  1. {
  2. "name": "@pythnetwork/pyth-sdk-solidity",
  3. "version": "4.0.0",
  4. "description": "Read prices from the Pyth oracle",
  5. "repository": {
  6. "type": "git",
  7. "url": "https://github.com/pyth-network/pyth-crosschain",
  8. "directory": "target_chains/ethereum/sdk/solidity"
  9. },
  10. "scripts": {
  11. "build:abis": "generate-abis IPyth IPythEvents AbstractPyth MockPyth PythErrors PythUtils PythAggregatorV3",
  12. "build:bin:": "solcjs --bin MockPyth.sol --base-path . -o build/",
  13. "format": "prettier --write .",
  14. "test": "git diff --exit-code abis"
  15. },
  16. "keywords": [
  17. "pyth",
  18. "solidity",
  19. "oracle"
  20. ],
  21. "author": "Pyth Data Association",
  22. "license": "Apache-2.0",
  23. "bugs": {
  24. "url": "https://github.com/pyth-network/pyth-crosschain/issues"
  25. },
  26. "homepage": "https://github.com/pyth-network/pyth-crosschain/tree/main/target_chains/ethereum/sdk/solidity",
  27. "devDependencies": {
  28. "abi_generator": "workspace:*",
  29. "prettier": "^2.7.1",
  30. "prettier-plugin-solidity": "^1.0.0-rc.1",
  31. "solc": "^0.8.25"
  32. }
  33. }