| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899 |
- {
- "name": "@pythnetwork/price-pusher",
- "version": "10.2.0",
- "description": "Pyth Price Pusher",
- "homepage": "https://pyth.network",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "dist/**/*"
- ],
- "bin": {
- "pyth-price-pusher": "./lib/index.js"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/pyth-network/pyth-crosschain",
- "directory": "apps/price_pusher"
- },
- "publishConfig": {
- "access": "public"
- },
- "scripts": {
- "build": "ts-duality",
- "fix:format": "prettier --write \"src/**/*.ts\"",
- "fix:lint": "eslint src/ --fix --max-warnings 0",
- "test:format": "prettier --check \"src/**/*.ts\"",
- "test:lint": "eslint src/ --max-warnings 0",
- "start": "node lib/index.js",
- "dev": "ts-node src/index.ts",
- "prepublishOnly": "pnpm run build && pnpm run test:lint",
- "preversion": "pnpm run test:lint",
- "version": "pnpm run test:format && pnpm run test:lint && git add -A src",
- "clean": "rm -rf ./dist"
- },
- "keywords": [
- "pyth",
- "oracle",
- "evm",
- "ethereum",
- "injective",
- "fuel",
- "aptos",
- "sui",
- "near"
- ],
- "license": "Apache-2.0",
- "devDependencies": {
- "@types/ethereum-protocol": "^1.0.2",
- "@types/express": "^4.17.21",
- "@types/jest": "^27.4.1",
- "@types/yargs": "^17.0.10",
- "@typescript-eslint/eslint-plugin": "^6.0.0",
- "@typescript-eslint/parser": "^6.0.0",
- "eslint": "^8.13.0",
- "jest": "^29.7.0",
- "pino-pretty": "^11.2.1",
- "prettier": "catalog:",
- "ts-jest": "^29.1.1",
- "ts-node": "catalog:"
- },
- "dependencies": {
- "@aptos-labs/ts-sdk": "^1.39.0",
- "@coral-xyz/anchor": "^0.30.0",
- "@injectivelabs/networks": "1.14.47",
- "@injectivelabs/sdk-ts": "1.14.50",
- "@injectivelabs/utils": "^1.14.48",
- "@mysten/sui": "^1.3.0",
- "@pythnetwork/hermes-client": "^1.3.1",
- "@pythnetwork/price-service-sdk": "workspace:^",
- "@pythnetwork/pyth-fuel-js": "workspace:*",
- "@pythnetwork/pyth-sdk-solidity": "workspace:*",
- "@pythnetwork/pyth-solana-receiver": "workspace:*",
- "@pythnetwork/pyth-sui-js": "workspace:*",
- "@pythnetwork/pyth-ton-js": "workspace:*",
- "@pythnetwork/solana-utils": "workspace:*",
- "@solana/web3.js": "^1.93.0",
- "@ton/core": "^0.59.0",
- "@ton/crypto": "^3.3.0",
- "@ton/ton": "^15.1.0",
- "@types/pino": "^7.0.5",
- "aptos": "^1.8.5",
- "express": "^4.18.2",
- "fuels": "catalog:",
- "jito-ts": "^3.0.1",
- "joi": "^17.6.0",
- "near-api-js": "^3.0.2",
- "pino": "^9.2.0",
- "prom-client": "^15.1.0",
- "viem": "^2.19.4",
- "yaml": "^2.1.1",
- "yargs": "^17.5.1"
- },
- "engines": {
- "node": ">=22.16.0",
- "pnpm": ">=10.19.0"
- },
- "packageManager": "pnpm@10.19.0",
- "type": "module"
- }
|