pyth-crosschain/target_chains/cosmwasm/sdk/js/package.json

54 lines
1.5 KiB
JSON
Raw Normal View History

{
"name": "@pythnetwork/pyth-terra-js",
"version": "1.1.0",
"description": "Pyth Network Terra Utils in JS",
"homepage": "https://pyth.network",
"author": {
"name": "Pyth Data Association"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*"
],
"repository": {
"type": "git",
"url": "https://github.com/pyth-network/pyth-crosschain",
"directory": "target_chains/cosmwasm/sdk/js"
},
"scripts": {
"test": "jest --passWithNoTests",
"build": "tsc",
"example-client": "npm run build && node lib/examples/TerraPriceServiceClient.js",
"example-relay": "npm run build && node lib/examples/TerraRelay.js",
"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": "^29.4.0",
"@types/node": "^18.11.18",
"@types/yargs": "^17.0.10",
"@typescript-eslint/eslint-plugin": "^5.21.0",
"@typescript-eslint/parser": "^5.21.0",
"eslint": "^8.14.0",
"jest": "^29.4.1",
"prettier": "^2.6.2",
"ts-jest": "^29.0.5",
"typescript": "^4.6.3",
"yargs": "^17.4.1"
},
"dependencies": {
"@pythnetwork/price-service-client": "*",
"@terra-money/terra.js": "^3.0.11",
"axios": "^0.26.1"
}
}