package.json 900 B

12345678910111213141516171819202122232425262728293031323334353637
  1. {
  2. "name": "contract_manager",
  3. "version": "1.0.0",
  4. "description": "Set of tools to manage pyth contracts",
  5. "private": true,
  6. "main": "lib/index.js",
  7. "types": "lib/index.d.ts",
  8. "files": [
  9. "lib/**/*"
  10. ],
  11. "scripts": {
  12. "build": "tsc",
  13. "shell": "ts-node ./src/shell.ts",
  14. "lint": "eslint src/"
  15. },
  16. "author": "",
  17. "license": "Apache-2.0",
  18. "repository": {
  19. "type": "git",
  20. "url": "git+https://github.com/pyth-network/pyth-crosschain.git"
  21. },
  22. "dependencies": {
  23. "@mysten/sui.js": "^0.37.1",
  24. "@certusone/wormhole-sdk": "^0.9.8",
  25. "@pythnetwork/cosmwasm-deploy-tools": "*",
  26. "@pythnetwork/price-service-client": "*",
  27. "@pythnetwork/pyth-sui-js": "*",
  28. "@injectivelabs/networks": "1.0.68",
  29. "aptos": "^1.5.0",
  30. "bs58": "^5.0.0",
  31. "ts-node": "^10.9.1",
  32. "typescript": "^4.9.3"
  33. },
  34. "devDependencies": {
  35. "prettier": "^2.6.2"
  36. }
  37. }