2023-02-22 13:44:42 -08:00
|
|
|
{
|
2023-03-21 12:25:30 -07:00
|
|
|
"name": "@pythnetwork/price-pusher",
|
2023-05-02 07:57:57 -07:00
|
|
|
"version": "5.0.0",
|
2023-03-03 00:23:43 -08:00
|
|
|
"description": "Pyth Price Pusher",
|
2023-02-22 13:44:42 -08:00
|
|
|
"homepage": "https://pyth.network",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"lib/**/*"
|
|
|
|
],
|
|
|
|
"bin": {
|
2023-03-03 00:23:43 -08:00
|
|
|
"pyth-price-pusher": "./lib/index.js"
|
2023-02-22 13:44:42 -08:00
|
|
|
},
|
2023-02-28 00:14:52 -08:00
|
|
|
"repository": {
|
|
|
|
"type": "git",
|
|
|
|
"url": "https://github.com/pyth-network/pyth-crosschain",
|
|
|
|
"directory": "price_pusher"
|
|
|
|
},
|
2023-03-29 09:36:25 -07:00
|
|
|
"publishConfig": {
|
|
|
|
"access": "public"
|
|
|
|
},
|
2023-02-22 13:44:42 -08:00
|
|
|
"scripts": {
|
|
|
|
"test": "jest src/ --passWithNoTests",
|
|
|
|
"build": "tsc",
|
|
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
|
|
"lint": "eslint src/",
|
|
|
|
"start": "node lib/index.js",
|
2023-03-01 13:05:39 -08:00
|
|
|
"dev": "ts-node src/index.ts",
|
2023-02-28 00:14:52 -08:00
|
|
|
"prepublishOnly": "npm run build && npm test && npm run lint",
|
2023-02-22 13:44:42 -08:00
|
|
|
"preversion": "npm run lint",
|
|
|
|
"version": "npm run format && git add -A src"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"pyth",
|
|
|
|
"oracle",
|
|
|
|
"evm",
|
2023-03-03 00:23:43 -08:00
|
|
|
"ethereum",
|
|
|
|
"injective"
|
2023-02-22 13:44:42 -08:00
|
|
|
],
|
|
|
|
"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": "^27.5.1",
|
|
|
|
"prettier": "^2.6.2",
|
|
|
|
"ts-jest": "^27.1.4",
|
|
|
|
"typescript": "^4.6.3"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
2023-05-03 08:18:00 -07:00
|
|
|
"@injectivelabs/sdk-ts": "1.10.72",
|
2023-03-02 06:59:19 -08:00
|
|
|
"@pythnetwork/price-service-client": "*",
|
2023-03-20 12:25:28 -07:00
|
|
|
"@pythnetwork/pyth-sdk-solidity": "*",
|
2023-02-22 13:44:42 -08:00
|
|
|
"@truffle/hdwallet-provider": "^2.1.3",
|
|
|
|
"joi": "^17.6.0",
|
|
|
|
"web3": "^1.8.1",
|
|
|
|
"web3-eth-contract": "^1.8.1",
|
|
|
|
"yaml": "^2.1.1",
|
|
|
|
"yargs": "^17.5.1"
|
|
|
|
}
|
|
|
|
}
|