| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- {
- "name": "@pythnetwork/contract-manager",
- "version": "1.0.1",
- "description": "Set of tools to manage pyth contracts",
- "private": true,
- "exports": {
- "./node/*": {
- "types": "./lib/node/utils/*.d.ts",
- "default": "./lib/node/utils/*.js"
- },
- "./core/*": {
- "types": "./lib/core/*.d.ts",
- "default": "./lib/core/*.js"
- },
- "./data/chains/*.json": {
- "default": "./store/chains/*.json"
- },
- "./data/contracts/*.json": {
- "default": "./store/contracts/*.json"
- },
- "./data/tokens/*.json": {
- "default": "./store/tokens/*.json"
- },
- "./data/vaults/*.json": {
- "default": "./store/vaults/*.json"
- },
- "./utils/*": {
- "types": "./lib/utils/*.d.ts",
- "default": "./lib/utils/*.js"
- }
- },
- "files": [
- "lib/**/*",
- "store/**/*.json"
- ],
- "scripts": {
- "build": "ts-duality",
- "shell": "ts-node ./src/node/utils/shell.ts",
- "fix:lint": "eslint src/ scripts/ --fix --max-warnings 0",
- "fix:format": "prettier --write \"src/**/*.ts\" \"scripts/**/*.ts\"",
- "test:lint": "eslint src/ scripts/ --max-warnings 0",
- "test:format": "prettier --check \"src/**/*.ts\" \"scripts/**/*.ts\"",
- "clean": "rm -rf ./dist"
- },
- "author": "",
- "license": "Apache-2.0",
- "repository": {
- "type": "git",
- "url": "git+https://github.com/pyth-network/pyth-crosschain.git"
- },
- "dependencies": {
- "@certusone/wormhole-sdk": "^0.9.8",
- "@coral-xyz/anchor": "^0.29.0",
- "@cosmjs/cosmwasm-stargate": "^0.32.3",
- "@cosmjs/stargate": "^0.32.3",
- "@injectivelabs/networks": "^1.14.6",
- "@iota/iota-sdk": "^0.5.0",
- "@mysten/sui": "^1.3.0",
- "@pythnetwork/client": "catalog:",
- "@pythnetwork/cosmwasm-deploy-tools": "workspace:*",
- "@pythnetwork/entropy-sdk-solidity": "workspace:*",
- "@pythnetwork/hermes-client": "workspace:*",
- "@pythnetwork/price-service-client": "workspace:*",
- "@pythnetwork/pyth-fuel-js": "workspace:*",
- "@pythnetwork/pyth-iota-js": "workspace:*",
- "@pythnetwork/pyth-sdk-solidity": "workspace:^",
- "@pythnetwork/pyth-starknet-js": "^0.2.1",
- "@pythnetwork/pyth-sui-js": "workspace:*",
- "@pythnetwork/pyth-ton": "workspace:*",
- "@pythnetwork/pyth-ton-js": "workspace:*",
- "@pythnetwork/solana-utils": "workspace:^",
- "@pythnetwork/xc-admin-common": "workspace:*",
- "@solana/web3.js": "^1.73.0",
- "@sqds/mesh": "^1.0.6",
- "@ton/blueprint": "^0.22.0",
- "@ton/core": "^0.59.0",
- "@ton/crypto": "^3.3.0",
- "@ton/ton": "^15.1.0",
- "@types/yargs": "^17.0.32",
- "aptos": "^1.5.0",
- "axios": "^0.24.0",
- "bs58": "^5.0.0",
- "extract-files": "^13.0.0",
- "fuels": "catalog:",
- "near-api-js": "^3.0.2",
- "ramda": "^0.30.1",
- "starknet": "^6.9.0",
- "ts-node": "catalog:",
- "viem": "^2.23.5",
- "web3": "^1.8.2",
- "web3-eth-contract": "^1.8.2"
- },
- "devDependencies": {
- "@types/web3": "^1.2.2",
- "@types/node": "catalog:",
- "eslint": "^8.0.0",
- "prettier": "catalog:",
- "typedoc": "^0.25.7"
- },
- "engines": {
- "node": ">=22.16.0",
- "pnpm": ">=10.19.0"
- },
- "packageManager": "pnpm@10.19.0",
- "type": "module"
- }
|