package.json 792 B

1234567891011121314151617181920212223242526272829
  1. {
  2. "name": "pyth-iota-cli",
  3. "version": "0.1.0",
  4. "description": "Pyth IOTA Integration Cli tools",
  5. "main": "index.js",
  6. "license": "Apache-2.0",
  7. "scripts": {
  8. "cli": "ts-node src/cli.ts",
  9. "build": "tsc",
  10. "test:format": "prettier --check .",
  11. "fix:format": "prettier --write ."
  12. },
  13. "private": "true",
  14. "dependencies": {
  15. "@certusone/wormhole-sdk": "^0.9.12",
  16. "@iota/iota-sdk": "^0.5.0",
  17. "@pythnetwork/contract-manager": "workspace:*",
  18. "@pythnetwork/price-service-client": "^1.4.0",
  19. "@pythnetwork/price-service-sdk": "^1.2.0",
  20. "@pythnetwork/xc-admin-common": "workspace:*",
  21. "prettier": "catalog:",
  22. "ts-node": "^10.9.1",
  23. "typescript": "^5.0.4",
  24. "yargs": "^17.7.2"
  25. },
  26. "devDependencies": {
  27. "@types/yargs": "^17.0.32"
  28. }
  29. }