package.json 704 B

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