package.json 2.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  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. "fix:lint": "eslint src/ scripts/ --fix --max-warnings 0",
  15. "fix:format": "prettier --write \"src/**/*.ts\" \"scripts/**/*.ts\"",
  16. "test:lint": "eslint src/ scripts/ --max-warnings 0",
  17. "test:format": "prettier --check \"src/**/*.ts\" \"scripts/**/*.ts\""
  18. },
  19. "author": "",
  20. "license": "Apache-2.0",
  21. "repository": {
  22. "type": "git",
  23. "url": "git+https://github.com/pyth-network/pyth-crosschain.git"
  24. },
  25. "dependencies": {
  26. "@certusone/wormhole-sdk": "^0.9.8",
  27. "@coral-xyz/anchor": "^0.29.0",
  28. "@cosmjs/cosmwasm-stargate": "^0.32.3",
  29. "@cosmjs/stargate": "^0.32.3",
  30. "@injectivelabs/networks": "^1.14.6",
  31. "@iota/iota-sdk": "^0.5.0",
  32. "@mysten/sui": "^1.3.0",
  33. "@pythnetwork/client": "catalog:",
  34. "@pythnetwork/cosmwasm-deploy-tools": "workspace:*",
  35. "@pythnetwork/entropy-sdk-solidity": "workspace:*",
  36. "@pythnetwork/hermes-client": "workspace:*",
  37. "@pythnetwork/price-service-client": "workspace:*",
  38. "@pythnetwork/pyth-fuel-js": "workspace:*",
  39. "@pythnetwork/pyth-iota-js": "workspace:*",
  40. "@pythnetwork/pyth-sdk-solidity": "workspace:^",
  41. "@pythnetwork/pyth-starknet-js": "^0.2.1",
  42. "@pythnetwork/pyth-sui-js": "workspace:*",
  43. "@pythnetwork/pyth-ton": "workspace:*",
  44. "@pythnetwork/pyth-ton-js": "workspace:*",
  45. "@pythnetwork/solana-utils": "workspace:^",
  46. "@pythnetwork/xc-admin-common": "workspace:*",
  47. "@solana/web3.js": "^1.73.0",
  48. "@sqds/mesh": "^1.0.6",
  49. "@ton/blueprint": "^0.22.0",
  50. "@ton/core": "^0.59.0",
  51. "@ton/crypto": "^3.3.0",
  52. "@ton/ton": "^15.1.0",
  53. "@types/yargs": "^17.0.32",
  54. "aptos": "^1.5.0",
  55. "axios": "^0.24.0",
  56. "bs58": "^5.0.0",
  57. "extract-files": "^13.0.0",
  58. "fuels": "^0.94.0",
  59. "near-api-js": "^3.0.2",
  60. "ramda": "^0.30.1",
  61. "starknet": "^6.9.0",
  62. "ts-node": "catalog:",
  63. "typescript": "catalog:",
  64. "viem": "^2.23.5",
  65. "web3": "^1.8.2",
  66. "web3-eth-contract": "^1.8.2",
  67. "yaml": "^2.1.1"
  68. },
  69. "devDependencies": {
  70. "@types/web3": "^1.2.2",
  71. "eslint": "^8.0.0",
  72. "prettier": "catalog:",
  73. "typedoc": "^0.25.7"
  74. }
  75. }