pyth-crosschain/governance/xc_governance_sdk_js/package.json

43 lines
1.1 KiB
JSON

{
"name": "@pythnetwork/xc-governance-sdk",
"version": "0.4.0",
"description": "Pyth Cross-chain Governance SDK",
"private": "true",
"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",
"preversion": "npm run lint",
"version": "npm run format && git add -A src"
},
"keywords": [
"pyth",
"oracle"
],
"license": "Apache-2.0",
"devDependencies": {
"@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",
"ethers": "^5.7.0"
}
}