UNPKG

@tedcryptoorg/cosmos-signer

Version:

Cosmos Signer - A library for signing transactions for Cosmos SDK chains

72 lines (71 loc) 2.13 kB
{ "name": "@tedcryptoorg/cosmos-signer", "version": "2.0.0-beta.0", "description": "Cosmos Signer - A library for signing transactions for Cosmos SDK chains", "types": "./lib/cjs/types/index.d.ts", "main": "./lib/cjs/index.js", "module": "./lib/esm/index.js", "sideEffects": false, "scripts": { "clean": "rimraf lib", "build": "npm run clean && npm run build:cjs && npm run build:esm", "build:cjs": "tsc -p ./configs/tsconfig.cjs.json", "build:esm": "tsc -p ./configs/tsconfig.esm.json", "build:watch": "tsc -p ./configs/tsconfig.cjs.json --watch", "test": "jest --passWithNoTests", "lint": "npx eslint .", "lint:fix": "npx eslint . --fix", "prepublishOnly": "npm run build", "generate-barrels": "barrelsby --directory src --delete" }, "keywords": [ "cosmos", "blockchain", "signing", "cryptocurrency" ], "author": "Josh Lopes <josluis.lopes@gmail.com>", "license": "MIT", "repository": "https://github.com/TedcryptoOrg/cosmos-signer", "bugs": { "url": "https://github.com/TedcryptoOrg/cosmos-signer/issues" }, "dependencies": { "@cosmjs/stargate": "^0.32.3", "@ethersproject/wallet": "^5.7.0", "@evmos/address-converter": "^0.1.9", "@tedcryptoorg/cosmos-directory": "^0.1.1", "@walletconnect/browser-utils": "^1.8.0", "axios": "^1.2.5", "axios-retry": "^4.0.0", "bignumber.js": "^9.1.2", "compare-versions": "^6.0.0-rc.1", "cosmjs-types": "^0.9.0", "lodash": "^4.17.21", "long": "^5.2.1", "parse-duration": "^1.0.2" }, "devDependencies": { "@babel/core": "^7.20.12", "@babel/preset-env": "^7.20.2", "@babel/preset-typescript": "^7.18.6", "@jest/globals": "^29.7.0", "@types/jest": "^29.2.6", "@types/lodash": "^4.14.191", "babel-jest": "^29.3.1", "barrelsby": "^2.8.1", "eslint-config-love": "^99.0.0", "jest": "^29.3.1", "jest-circus": "^29.6.3", "rimraf": "^5.0.1", "ts-jest": "^29.1.1", "ts-node": "^10.9.1", "typescript": "^5.0.0" }, "files": [ "lib/**/*" ], "engines": { "node": ">=14.0.0" } }