package.json 921 B

1234567891011121314151617181920212223242526272829303132333435363738
  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": "ts-duality",
  10. "test:format": "prettier --check .",
  11. "fix:format": "prettier --write .",
  12. "clean": "rm -rf ./dist"
  13. },
  14. "author": "",
  15. "license": "ISC",
  16. "bin": {
  17. "aptos": "./build/cli.js"
  18. },
  19. "devDependencies": {
  20. "@types/node": "^18.7.21",
  21. "@types/yargs": "^17.0.13",
  22. "prettier": "catalog:"
  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. "engines": {
  33. "node": ">=22.16.0",
  34. "pnpm": ">=10.19.0"
  35. },
  36. "packageManager": "pnpm@10.19.0",
  37. "type": "module"
  38. }