pyth-crosschain/governance/multisig_wh_message_builder/package.json

55 lines
1.5 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/",
"prepublishOnly": "npm run build && npm test && npm run lint",
2022-09-13 19:36:52 -07:00
"preversion": "npm run lint",
"version": "npm run format && git add -A src",
"start": "node lib/index.js"
2022-09-13 19:36:52 -07:00
},
"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"
2022-09-13 19:36:52 -07:00
},
"dependencies": {
"@certusone/wormhole-sdk": "^0.6.2",
"@ledgerhq/hw-transport": "^6.27.2",
"@ledgerhq/hw-transport-node-hid": "^6.27.2",
2022-09-13 19:36:52 -07:00
"@project-serum/anchor": "^0.25.0",
"@solana/web3.js": "^1.53.0",
"@sqds/mesh": "^1.0.6",
"@types/lodash": "^4.14.186",
"@types/node-fetch": "^2.6.2",
"@types/node-hid": "^1.3.1",
2022-09-13 19:36:52 -07:00
"bs58": "^5.0.0",
"commander": "^9.4.0",
"ethers": "^5.7.0",
"lodash": "^4.17.21",
"ts-node": "^10.9.1",
"typescript": "^4.8.3"
2022-09-13 19:36:52 -07:00
}
}