package.json 685 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "@pythnetwork/aptos-cli",
  3. "version": "1.0.0",
  4. "description": "Utilities for managing the Pyth Target Chain contract on Aptos",
  5. "main": "index.js",
  6. "scripts": {
  7. "cli": "ts-node src/cli.ts",
  8. "build": "tsc"
  9. },
  10. "author": "",
  11. "license": "ISC",
  12. "bin": {
  13. "aptos": "./build/cli.js"
  14. },
  15. "devDependencies": {
  16. "@types/node": "^18.7.21",
  17. "@types/yargs": "^17.0.13",
  18. "prettier": "2.8.0",
  19. "typescript": "^5.3.3"
  20. },
  21. "dependencies": {
  22. "@pythnetwork/contract-manager": "workspace:*",
  23. "@pythnetwork/pyth-aptos-js": "workspace:*",
  24. "aptos": "^1.3.14",
  25. "ethers": "^5.7.1",
  26. "js-sha3": "^0.8.0",
  27. "yargs": "^17.5.1"
  28. }
  29. }