| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869 |
- {
- "name": "@pythnetwork/price-pusher",
- "version": "6.4.2",
- "description": "Pyth Price Pusher",
- "homepage": "https://pyth.network",
- "main": "lib/index.js",
- "types": "lib/index.d.ts",
- "files": [
- "lib/**/*"
- ],
- "bin": {
- "pyth-price-pusher": "./lib/index.js"
- },
- "repository": {
- "type": "git",
- "url": "https://github.com/pyth-network/pyth-crosschain",
- "directory": "price_pusher"
- },
- "publishConfig": {
- "access": "public"
- },
- "scripts": {
- "test": "jest src/ --passWithNoTests",
- "build": "tsc",
- "format": "prettier --write \"src/**/*.ts\"",
- "lint": "eslint src/",
- "start": "node lib/index.js",
- "dev": "ts-node src/index.ts",
- "prepublishOnly": "npm run build && npm test && npm run lint",
- "preversion": "npm run lint",
- "version": "npm run format && git add -A src"
- },
- "keywords": [
- "pyth",
- "oracle",
- "evm",
- "ethereum",
- "injective"
- ],
- "license": "Apache-2.0",
- "devDependencies": {
- "@types/ethereum-protocol": "^1.0.2",
- "@types/jest": "^27.4.1",
- "@types/yargs": "^17.0.10",
- "@typescript-eslint/eslint-plugin": "^5.20.0",
- "@typescript-eslint/parser": "^5.20.0",
- "eslint": "^8.13.0",
- "jest": "^29.7.0",
- "prettier": "^2.6.2",
- "ts-jest": "^29.1.1",
- "typescript": "^5.3.3"
- },
- "dependencies": {
- "@injectivelabs/sdk-ts": "1.10.72",
- "@pythnetwork/pyth-solana-receiver": "*",
- "@mysten/sui.js": "^0.49.1",
- "@pythnetwork/price-service-client": "*",
- "@pythnetwork/pyth-sdk-solidity": "*",
- "@pythnetwork/pyth-sui-js": "*",
- "@truffle/hdwallet-provider": "^2.1.3",
- "aptos": "^1.8.5",
- "joi": "^17.6.0",
- "near-api-js": "^3.0.2",
- "web3": "^1.8.1",
- "web3-eth-contract": "^1.8.1",
- "yaml": "^2.1.1",
- "yargs": "^17.5.1"
- }
- }
|