package.json 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970
  1. {
  2. "name": "@pythnetwork/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. "test: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. "@cosmjs/cosmwasm-stargate": "^0.32.3",
  27. "@cosmjs/stargate": "^0.32.3",
  28. "@injectivelabs/networks": "^1.14.6",
  29. "@mysten/sui": "^1.3.0",
  30. "@pythnetwork/client": "catalog:",
  31. "@pythnetwork/cosmwasm-deploy-tools": "workspace:*",
  32. "@pythnetwork/entropy-sdk-solidity": "workspace:*",
  33. "@pythnetwork/hermes-client": "workspace:*",
  34. "@pythnetwork/price-service-client": "workspace:*",
  35. "@pythnetwork/pyth-fuel-js": "workspace:*",
  36. "@pythnetwork/pyth-sdk-solidity": "workspace:^",
  37. "@pythnetwork/pyth-starknet-js": "^0.2.1",
  38. "@pythnetwork/pyth-sui-js": "workspace:*",
  39. "@pythnetwork/pyth-ton": "workspace:*",
  40. "@pythnetwork/pyth-ton-js": "workspace:*",
  41. "@pythnetwork/solana-utils": "workspace:^",
  42. "@pythnetwork/xc-admin-common": "workspace:*",
  43. "@solana/web3.js": "^1.73.0",
  44. "@sqds/mesh": "^1.0.6",
  45. "@ton/blueprint": "^0.22.0",
  46. "@ton/core": "^0.59.0",
  47. "@ton/crypto": "^3.3.0",
  48. "@ton/ton": "^15.1.0",
  49. "@types/yargs": "^17.0.32",
  50. "aptos": "^1.5.0",
  51. "axios": "^0.24.0",
  52. "bs58": "^5.0.0",
  53. "extract-files": "^13.0.0",
  54. "fuels": "^0.94.0",
  55. "near-api-js": "^3.0.2",
  56. "ramda": "^0.30.1",
  57. "starknet": "^6.9.0",
  58. "ts-node": "^10.9.1",
  59. "typescript": "^5.3.3",
  60. "web3": "^1.8.2",
  61. "web3-eth-contract": "^1.8.2",
  62. "yaml": "^2.1.1"
  63. },
  64. "devDependencies": {
  65. "@types/web3": "^1.2.2",
  66. "eslint": "^8.0.0",
  67. "prettier": "^2.6.2",
  68. "typedoc": "^0.25.7"
  69. }
  70. }