pyth-crosschain/third_party/pyth/multisig-wh-message-builder/package.json

50 lines
1.3 KiB
JSON
Raw Normal View History

2022-09-13 19:36:52 -07:00
{
"name": "@pythnetwork/pyth-multisig-wh-message-builder",
"version": "0.1.0",
"description": "Pyth Multisig Wormhole Message Builder",
"homepage": "https://pyth.network",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": "https://github.com/pyth-network/pyth-crosschain",
"scripts": {
"test": "jest src/ --passWithNoTests",
"build": "tsc",
"format": "prettier --write \"src/**/*.ts\"",
"lint": "eslint src/",
"prepare": "npm run build",
"prepublishOnly": "npm test && npm run lint",
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"start": "ts-node src/index.ts"
},
"keywords": [
"pyth",
"oracle"
],
"license": "Apache-2.0",
"devDependencies": {
"@types/bn.js": "^5.1.0",
"@types/jest": "^28.0.8",
"@typescript-eslint/eslint-plugin": "^5.36.2",
"@typescript-eslint/parser": "^5.36.2",
"eslint": "^8.23.0",
"jest": "^28.0.8",
"prettier": "^2.7.1",
"ts-jest": "^28.0.8",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
},
"dependencies": {
"@certusone/wormhole-sdk": "^0.6.2",
"@project-serum/anchor": "^0.25.0",
"@solana/web3.js": "^1.53.0",
"@sqds/sdk": "^1.0.4",
"bs58": "^5.0.0",
"commander": "^9.4.0",
"ethers": "^5.7.0"
}
}