2021-08-15 15:17:11 -07:00
|
|
|
{
|
|
|
|
"name": "@certusone/wormhole-sdk",
|
|
|
|
"version": "0.0.1",
|
|
|
|
"description": "SDK for interacting with Wormhole",
|
|
|
|
"homepage": "https://wormholenetwork.com",
|
|
|
|
"main": "lib/index.js",
|
|
|
|
"types": "lib/index.d.ts",
|
|
|
|
"files": [
|
|
|
|
"lib/**/*"
|
|
|
|
],
|
|
|
|
"scripts": {
|
2021-08-16 09:49:10 -07:00
|
|
|
"postinstall": "npm run build-contracts",
|
|
|
|
"build-contracts": "npm run build --prefix ../../ethereum && node scripts/copyContracts.js && typechain --target=ethers-v5 --out-dir=src/ethers-contracts contracts/*.json",
|
2021-08-15 15:17:11 -07:00
|
|
|
"test": "echo \"Error: no test specified\" && exit 1",
|
2021-08-16 09:49:10 -07:00
|
|
|
"build": "tsc && node scripts/copyEthersTypes.js && node scripts/copyWasm.js",
|
2021-08-15 15:17:11 -07:00
|
|
|
"format": "prettier --write \"src/**/*.ts\"",
|
|
|
|
"lint": "tslint -p tsconfig.json",
|
|
|
|
"prepare": "npm run build",
|
|
|
|
"prepublishOnly": "npm test && npm run lint",
|
|
|
|
"preversion": "npm run lint",
|
|
|
|
"version": "npm run format && git add -A src",
|
|
|
|
"postversion": "git push && git push --tags"
|
|
|
|
},
|
|
|
|
"keywords": [
|
|
|
|
"wormhole",
|
|
|
|
"bridge",
|
|
|
|
"token",
|
|
|
|
"sdk",
|
|
|
|
"solana",
|
|
|
|
"ethereum",
|
|
|
|
"terra",
|
|
|
|
"bsc"
|
|
|
|
],
|
|
|
|
"author": "certusone",
|
|
|
|
"license": "Apache-2.0",
|
|
|
|
"devDependencies": {
|
2021-08-16 09:49:10 -07:00
|
|
|
"@openzeppelin/contracts": "^4.2.0",
|
|
|
|
"@typechain/ethers-v5": "^7.0.1",
|
2021-08-15 15:17:11 -07:00
|
|
|
"@types/long": "^4.0.1",
|
2021-08-17 18:19:15 -07:00
|
|
|
"@types/node": "^16.6.1",
|
2021-08-20 04:22:15 -07:00
|
|
|
"@types/react": "^17.0.19",
|
2021-08-16 09:49:10 -07:00
|
|
|
"copy-dir": "^1.3.0",
|
2021-08-17 18:19:15 -07:00
|
|
|
"ethers": "^5.4.4",
|
2021-08-15 15:17:11 -07:00
|
|
|
"prettier": "^2.3.2",
|
|
|
|
"tslint": "^6.1.3",
|
|
|
|
"tslint-config-prettier": "^1.18.0",
|
|
|
|
"typescript": "^4.3.5"
|
|
|
|
},
|
|
|
|
"dependencies": {
|
|
|
|
"@improbable-eng/grpc-web": "^0.14.0",
|
2021-08-17 18:19:15 -07:00
|
|
|
"@solana/spl-token": "^0.1.8",
|
2021-08-15 15:17:11 -07:00
|
|
|
"@solana/web3.js": "^1.24.0",
|
2021-08-20 04:22:15 -07:00
|
|
|
"@terra-money/terra.js": "^1.8.10",
|
|
|
|
"@terra-money/wallet-provider": "^1.2.4",
|
2021-08-30 18:07:09 -07:00
|
|
|
"bech32": "^2.0.0",
|
2021-08-20 04:22:15 -07:00
|
|
|
"js-base64": "^3.6.1",
|
2021-08-15 15:17:11 -07:00
|
|
|
"protobufjs": "^6.11.2",
|
|
|
|
"rxjs": "^7.3.0"
|
|
|
|
}
|
|
|
|
}
|