package.json 992 B

1234567891011121314151617181920212223242526272829303132
  1. {
  2. "name": "@pythnetwork/pyth-sdk-solidity",
  3. "version": "2.4.1",
  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. "format": "npx prettier --write .",
  12. "generate-abi": "npx generate-abis IPyth IPythEvents AbstractPyth MockPyth PythErrors",
  13. "check-abi": "git diff --exit-code abis",
  14. "build": "solcjs --bin MockPyth.sol --base-path . -o build/"
  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. "prettier": "^2.7.1",
  29. "prettier-plugin-solidity": "^1.0.0-rc.1",
  30. "abi_generator": "*"
  31. }
  32. }