wormhole/sdk/js-query/package.json

38 lines
826 B
JSON
Raw Normal View History

{
"name": "@wormhole-foundation/wormhole-query-sdk",
"version": "0.0.1",
"description": "Wormhole cross-chain query SDK",
"homepage": "https://wormhole.com",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"files": [
"lib/"
],
"scripts": {
"test": "jest --verbose",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json"
},
"keywords": [
"wormhole",
"sdk",
"cross-chain",
"query"
],
"author": "Wormhole Foundation",
"license": "Apache-2.0",
"devDependencies": {
"axios": "^1.4.0",
"jest": "^29.5.0",
"prettier": "^2.3.2",
"ts-jest": "^29.1.0",
"ts-node": "^10.9.1",
"typescript": "^5.1.3"
},
"sideEffects": false,
"dependencies": {
"@types/elliptic": "^6.4.14",
"elliptic": "^6.5.4",
"web3": "^4.1.2"
}
}