wormhole/sdk/js-query/package.json

45 lines
1.1 KiB
JSON
Raw Normal View History

{
"name": "@wormhole-foundation/wormhole-query-sdk",
"version": "0.0.12",
"description": "Wormhole cross-chain query SDK",
"homepage": "https://wormhole.com",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"types": "./lib/types/index.d.ts",
"files": [
"lib/"
],
"scripts": {
"test": "jest --verbose",
"test-ci": "jest --verbose --setupFiles ./ci-config.js --forceExit",
"build": "tsc -p tsconfig.json && tsc -p tsconfig.cjs.json && tsc -p tsconfig.types.json"
},
"keywords": [
"wormhole",
"sdk",
"cross-chain",
"query"
],
"author": "Wormhole Foundation",
"license": "Apache-2.0",
"devDependencies": {
"@types/bs58": "^4.0.4",
"jest": "^29.5.0",
"prettier": "^2.3.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
2023-10-19 13:40:52 -07:00
"typescript": "^5.1.3",
"web3": "^4.1.2"
},
"sideEffects": false,
"dependencies": {
2023-10-19 13:40:52 -07:00
"@ethersproject/keccak256": "^5.7.0",
"@solana/web3.js": "^1.66.2",
"@types/elliptic": "^6.4.14",
2024-02-14 13:40:28 -08:00
"axios": "^1.6.7",
"bs58": "^4.0.1",
2023-10-19 13:40:52 -07:00
"buffer": "^6.0.3",
"elliptic": "^6.5.4"
}
}