package.json 788 B

1234567891011121314151617181920212223242526272829303132
  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. "test:format": "prettier --check .",
  11. "fix:format": "prettier --write ."
  12. },
  13. "author": "",
  14. "license": "ISC",
  15. "bin": {
  16. "aptos": "./build/cli.js"
  17. },
  18. "devDependencies": {
  19. "@types/node": "^18.7.21",
  20. "@types/yargs": "^17.0.13",
  21. "prettier": "catalog:",
  22. "typescript": "^5.3.3"
  23. },
  24. "dependencies": {
  25. "@pythnetwork/contract-manager": "workspace:*",
  26. "@pythnetwork/pyth-aptos-js": "workspace:*",
  27. "aptos": "^1.3.14",
  28. "ethers": "^5.7.1",
  29. "js-sha3": "^0.8.0",
  30. "yargs": "^17.5.1"
  31. }
  32. }