package.json 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  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/ scripts/",
  15. "format": "prettier --write \"src/**/*.ts\" \"scripts/**/*.ts\""
  16. },
  17. "author": "",
  18. "license": "Apache-2.0",
  19. "repository": {
  20. "type": "git",
  21. "url": "git+https://github.com/pyth-network/pyth-crosschain.git"
  22. },
  23. "dependencies": {
  24. "@certusone/wormhole-sdk": "^0.9.8",
  25. "@coral-xyz/anchor": "^0.29.0",
  26. "@injectivelabs/networks": "1.0.68",
  27. "@mysten/sui.js": "^0.49.1",
  28. "@pythnetwork/cosmwasm-deploy-tools": "*",
  29. "@pythnetwork/entropy-sdk-solidity": "*",
  30. "@pythnetwork/price-service-client": "*",
  31. "@pythnetwork/pyth-sui-js": "*",
  32. "@types/yargs": "^17.0.32",
  33. "aptos": "^1.5.0",
  34. "axios": "^0.24.0",
  35. "bs58": "^5.0.0",
  36. "ts-node": "^10.9.1",
  37. "typescript": "^5.3.3"
  38. },
  39. "devDependencies": {
  40. "prettier": "^2.6.2",
  41. "typedoc": "^0.25.7"
  42. }
  43. }