c1e809fd99
* Made client compile again + set auto fees * Simplified client construction by allowing only a single URL * wip * Simplified signing assertion * Initial implementation of queries * Implemented all basic nymd queries * Validator API queries * Signing related queries * Using default arguments * Removed redundant else branches * `eslint` and `prettier` formatting on Typescript validator client * Removed cyclic import on Coin type * Missing direct dependencies * Ingoring cyclic imports * Removed unused argument Co-authored-by: Mark Sinclair <mmsinclair@gmail.com>
57 lines
1.7 KiB
JSON
57 lines
1.7 KiB
JSON
{
|
|
"name": "@nymproject/nym-validator-client",
|
|
"version": "0.19.0",
|
|
"description": "A TypeScript client for interacting with smart contracts in Nym validators",
|
|
"repository": "https://github.com/nymtech/nym",
|
|
"main": "./dist/index.js",
|
|
"types": "dist/index.d.ts",
|
|
"scripts": {
|
|
"build": "tsc",
|
|
"test": "ts-mocha tests/**/*.test.ts",
|
|
"coverage": "nyc npm test",
|
|
"lint": "eslint src",
|
|
"lint:fix": "eslint src --fix",
|
|
"docs": "typedoc --out docs src/index.ts"
|
|
},
|
|
"keywords": [],
|
|
"author": "Nym Technologies SA (https://nymtech.net)",
|
|
"contributors": [
|
|
"Dave Hrycyszyn (https://constructiveproof.com/)",
|
|
"Jędrzej Stuczynski"
|
|
],
|
|
"license": "Apache-2.0",
|
|
"devDependencies": {
|
|
"@types/chai": "^4.2.15",
|
|
"@types/expect": "^24.3.0",
|
|
"@types/mocha": "^8.2.1",
|
|
"@typescript-eslint/eslint-plugin": "^5.7.0",
|
|
"@typescript-eslint/parser": "^5.7.0",
|
|
"chai": "^4.2.0",
|
|
"eslint": "^7.18.0",
|
|
"eslint-config-airbnb": "^19.0.2",
|
|
"eslint-config-airbnb-typescript": "^16.1.0",
|
|
"eslint-config-prettier": "^8.3.0",
|
|
"eslint-import-resolver-root-import": "^1.0.4",
|
|
"eslint-plugin-import": "^2.25.3",
|
|
"eslint-plugin-mocha": "^10.0.3",
|
|
"eslint-plugin-prettier": "^4.0.0",
|
|
"mocha": "^8.2.1",
|
|
"moq.ts": "^7.2.0",
|
|
"nyc": "^15.1.0",
|
|
"prettier": "^2.5.1",
|
|
"ts-mocha": "^8.0.0",
|
|
"typedoc": "^0.20.27",
|
|
"typescript": "^4.1.3"
|
|
},
|
|
"dependencies": {
|
|
"@cosmjs/cosmwasm-stargate": "^0.27.0-rc2",
|
|
"@cosmjs/crypto": "^0.27.0-rc2",
|
|
"@cosmjs/math": "^0.27.0-rc2",
|
|
"@cosmjs/proto-signing": "^0.27.0-rc2",
|
|
"@cosmjs/stargate": "^0.27.0-rc2",
|
|
"@cosmjs/tendermint-rpc": "^0.27.0-rc2",
|
|
"axios": "^0.21.1",
|
|
"cosmjs-types": "^0.4.0"
|
|
}
|
|
}
|