package.json 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106
  1. {
  2. "name": "@pythnetwork/contract-manager",
  3. "version": "1.0.1",
  4. "description": "Set of tools to manage pyth contracts",
  5. "private": true,
  6. "exports": {
  7. "./node/*": {
  8. "types": "./lib/node/utils/*.d.ts",
  9. "default": "./lib/node/utils/*.js"
  10. },
  11. "./core/*": {
  12. "types": "./lib/core/*.d.ts",
  13. "default": "./lib/core/*.js"
  14. },
  15. "./data/chains/*.json": {
  16. "default": "./store/chains/*.json"
  17. },
  18. "./data/contracts/*.json": {
  19. "default": "./store/contracts/*.json"
  20. },
  21. "./data/tokens/*.json": {
  22. "default": "./store/tokens/*.json"
  23. },
  24. "./data/vaults/*.json": {
  25. "default": "./store/vaults/*.json"
  26. },
  27. "./utils/*": {
  28. "types": "./lib/utils/*.d.ts",
  29. "default": "./lib/utils/*.js"
  30. }
  31. },
  32. "files": [
  33. "lib/**/*",
  34. "store/**/*.json"
  35. ],
  36. "scripts": {
  37. "build": "ts-duality",
  38. "shell": "ts-node ./src/node/utils/shell.ts",
  39. "fix:lint": "eslint src/ scripts/ --fix --max-warnings 0",
  40. "fix:format": "prettier --write \"src/**/*.ts\" \"scripts/**/*.ts\"",
  41. "test:lint": "eslint src/ scripts/ --max-warnings 0",
  42. "test:format": "prettier --check \"src/**/*.ts\" \"scripts/**/*.ts\"",
  43. "clean": "rm -rf ./dist"
  44. },
  45. "author": "",
  46. "license": "Apache-2.0",
  47. "repository": {
  48. "type": "git",
  49. "url": "git+https://github.com/pyth-network/pyth-crosschain.git"
  50. },
  51. "dependencies": {
  52. "@certusone/wormhole-sdk": "^0.9.8",
  53. "@coral-xyz/anchor": "^0.29.0",
  54. "@cosmjs/cosmwasm-stargate": "^0.32.3",
  55. "@cosmjs/stargate": "^0.32.3",
  56. "@injectivelabs/networks": "^1.14.6",
  57. "@iota/iota-sdk": "^0.5.0",
  58. "@mysten/sui": "^1.3.0",
  59. "@pythnetwork/client": "catalog:",
  60. "@pythnetwork/cosmwasm-deploy-tools": "workspace:*",
  61. "@pythnetwork/entropy-sdk-solidity": "workspace:*",
  62. "@pythnetwork/hermes-client": "workspace:*",
  63. "@pythnetwork/price-service-client": "workspace:*",
  64. "@pythnetwork/pyth-fuel-js": "workspace:*",
  65. "@pythnetwork/pyth-iota-js": "workspace:*",
  66. "@pythnetwork/pyth-sdk-solidity": "workspace:^",
  67. "@pythnetwork/pyth-starknet-js": "^0.2.1",
  68. "@pythnetwork/pyth-sui-js": "workspace:*",
  69. "@pythnetwork/pyth-ton": "workspace:*",
  70. "@pythnetwork/pyth-ton-js": "workspace:*",
  71. "@pythnetwork/solana-utils": "workspace:^",
  72. "@pythnetwork/xc-admin-common": "workspace:*",
  73. "@solana/web3.js": "^1.73.0",
  74. "@sqds/mesh": "^1.0.6",
  75. "@ton/blueprint": "^0.22.0",
  76. "@ton/core": "^0.59.0",
  77. "@ton/crypto": "^3.3.0",
  78. "@ton/ton": "^15.1.0",
  79. "@types/yargs": "^17.0.32",
  80. "aptos": "^1.5.0",
  81. "axios": "^0.24.0",
  82. "bs58": "^5.0.0",
  83. "extract-files": "^13.0.0",
  84. "fuels": "catalog:",
  85. "near-api-js": "^3.0.2",
  86. "ramda": "^0.30.1",
  87. "starknet": "^6.9.0",
  88. "ts-node": "catalog:",
  89. "viem": "^2.23.5",
  90. "web3": "^1.8.2",
  91. "web3-eth-contract": "^1.8.2"
  92. },
  93. "devDependencies": {
  94. "@types/web3": "^1.2.2",
  95. "@types/node": "catalog:",
  96. "eslint": "^8.0.0",
  97. "prettier": "catalog:",
  98. "typedoc": "^0.25.7"
  99. },
  100. "engines": {
  101. "node": ">=22.16.0",
  102. "pnpm": ">=10.19.0"
  103. },
  104. "packageManager": "pnpm@10.19.0",
  105. "type": "module"
  106. }