-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
71 lines (71 loc) · 2.07 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
{
"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 <[email protected]>",
"license": "MIT",
"repository": "https://github.com/TedcryptoOrg/cosmos-signer",
"bugs": {
"url": "https://github.com/TedcryptoOrg/cosmos-signer/issues"
},
"dependencies": {
"@cosmjs/stargate": "^0.32.4",
"@ethersproject/wallet": "^5.7.0",
"@evmos/address-converter": "^0.1.9",
"@tedcryptoorg/cosmos-directory": "^0.1.2",
"@walletconnect/browser-utils": "^1.8.0",
"axios": "^1.7.9",
"axios-retry": "^4.5.0",
"bignumber.js": "^9.1.2",
"compare-versions": "^6.1.1",
"cosmjs-types": "^0.9.0",
"lodash": "^4.17.21",
"long": "^5.3.1",
"parse-duration": "^1.1.2"
},
"devDependencies": {
"@babel/core": "^7.26.9",
"@babel/preset-env": "^7.26.9",
"@babel/preset-typescript": "^7.26.0",
"@jest/globals": "^29.7.0",
"@types/jest": "^29.5.14",
"@types/lodash": "^4.17.15",
"babel-jest": "^29.7.0",
"barrelsby": "^2.8.1",
"eslint-config-love": "^99.0.0",
"jest": "^29.7.0",
"jest-circus": "^29.7.0",
"rimraf": "^5.0.10",
"ts-jest": "^29.2.5",
"ts-node": "^10.9.2",
"typescript": "^5.7.3"
},
"files": [
"lib/**/*"
],
"engines": {
"node": ">=14.21.3"
}
}