| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889 |
- {
- "name": "@certusone/wormhole-sdk",
- "version": "0.9.9",
- "description": "SDK for interacting with Wormhole",
- "homepage": "https://wormhole.com",
- "main": "./lib/cjs/index.js",
- "module": "./lib/esm/index.js",
- "files": [
- "lib/"
- ],
- "repository": "https://github.com/certusone/wormhole/tree/main/sdk/js",
- "scripts": {
- "build-contracts": "npm run build --prefix ../../ethereum && node scripts/copyContracts.js && typechain --target=ethers-v5 --out-dir=src/ethers-contracts contracts/*.json",
- "build-abis": "typechain --target=ethers-v5 --out-dir=src/ethers-contracts/abi src/abi/Wormhole.abi.json",
- "build-idl": "node scripts/compileAnchorIdls.js",
- "build-deps": "npm run build-abis && npm run build-contracts && npm run build-idl",
- "build-lib": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json && node scripts/copyEthersTypes.js",
- "build-all": "npm run build-deps && npm run build-lib",
- "docs": "typedoc src/index.ts",
- "test": "jest --config jestconfig.json --verbose",
- "test-ci": "NEAR_NO_LOGS=true jest --config jestconfig.json --verbose --setupFiles ./ci-config.js --forceExit",
- "build": "npm run build-all",
- "format": "echo \"disabled: prettier --write \"src/**/*.ts\"\"",
- "lint": "tslint -p tsconfig.json",
- "prepublishOnly": "echo \"disabled: 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": {
- "@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
- "@openzeppelin/contracts": "^4.2.0",
- "@typechain/ethers-v5": "^7.0.1",
- "@types/bs58": "4.0.1",
- "@types/elliptic": "^6.4.14",
- "@types/jest": "^27.0.2",
- "@types/long": "^4.0.1",
- "@types/node": "^16.6.1",
- "@types/node-fetch": "^2.6.2",
- "@types/react": "^17.0.19",
- "copy-dir": "^1.3.0",
- "dotenv": "16.0.3",
- "ethers": "^5.6.8",
- "jest": "^27.3.1",
- "prettier": "^2.3.2",
- "truffle": "^5.7.2",
- "ts-jest": "^27.0.7",
- "tslint": "^6.1.3",
- "tslint-config-prettier": "^1.18.0",
- "typechain": "^5.0.0",
- "typedoc": "0.21.10",
- "typescript": "^4.3.5",
- "web3": "^1.6.1"
- },
- "dependencies": {
- "@certusone/wormhole-sdk-proto-web": "0.0.6",
- "@certusone/wormhole-sdk-wasm": "^0.0.1",
- "@injectivelabs/networks": "^1.0.73",
- "@injectivelabs/sdk-ts": "^1.0.368",
- "@injectivelabs/utils": "^1.0.63",
- "@coral-xyz/borsh": "0.2.6",
- "@project-serum/anchor": "^0.25.0",
- "@solana/spl-token": "^0.3.5",
- "@solana/web3.js": "^1.66.2",
- "@terra-money/terra.js": "^3.1.3",
- "@xpla/xpla.js": "^0.2.1",
- "algosdk": "^1.15.0",
- "aptos": "^1.3.16",
- "axios": "^0.24.0",
- "bech32": "^2.0.0",
- "binary-parser": "^2.2.1",
- "bs58": "^4.0.1",
- "elliptic": "^6.5.4",
- "js-base64": "^3.6.1",
- "near-api-js": "^1.0.0"
- }
- }
|