-
-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
83 lines (83 loc) · 2.56 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
72
73
74
75
76
77
78
79
80
81
82
83
{
"name": "@cosmos-client/core",
"description": "REST API client for Cosmos SDK blockchain",
"version": "0.47.4",
"author": "CauchyE, Inc.",
"bugs": {
"url": "https://github.com/cosmos-client/cosmos-client-ts/issues"
},
"scripts": {
"lint": "eslint \"src/**/*\"",
"test": "jest",
"test:watch": "jest --watch",
"build": "rm -r dist ; mkdir dist && npm run build:cjs && npm run build:esm && npm run build:cdn && node bundle",
"build:cjs": "tsc --build --clean && tsc --target es5 --module commonjs && mv lib dist/cjs",
"build:esm": "tsc --build --clean && tsc --target esnext --module esnext && mv lib dist/esm",
"build:cdn": "tsc --build --clean && tsc --target esnext --module esnext && webpack && cp cdn/main.js dist/index.min.js",
"gen:openapi": "bash ./gen-openapi.sh",
"gen:proto": "bash ./gen-proto.sh",
"prepare": "husky install || exit 0"
},
"dependencies": {
"axios": "^0.23.0",
"bech32": "^1.1.4",
"bip32": "^2.0.6",
"bip39": "^3.0.4",
"process": "^0.11.10",
"protobufjs": "^6.11.3",
"rxjs": "^7.4.0",
"secp256k1": "^4.0.2",
"tweetnacl": "^1.0.3"
},
"devDependencies": {
"@babel/core": "^7.15.8",
"@babel/preset-env": "^7.15.8",
"@commitlint/cli": "^13.2.1",
"@commitlint/config-conventional": "^13.2.0",
"@trivago/prettier-plugin-sort-imports": "^2.0.4",
"@types/bech32": "^1.1.4",
"@types/jest": "^27.0.2",
"@types/secp256k1": "^4.0.3",
"@typescript-eslint/eslint-plugin": "^5.0.0",
"@typescript-eslint/parser": "^5.0.0",
"babel-jest": "^27.2.3",
"buffer": "^6.0.3",
"crypto-browserify": "^3.12.0",
"eslint": "^8.0.1",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.25.2",
"eslint-plugin-jest": "^25.2.1",
"husky": "^7.0.2",
"jest": "^27.2.5",
"prettier": "^2.4.1",
"stream-browserify": "^3.0.0",
"ts-jest": "^27.0.7",
"ts-loader": "^9.3.0",
"typescript": "^4.4.4",
"webpack": "^5.73.0",
"webpack-cli": "^4.10.0"
},
"homepage": "https://github.com/cosmos-client/cosmos-client-ts#readme",
"keywords": [
"Blockchain",
"Cosmos SDK"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/cosmos-client/cosmos-client-ts.git"
},
"main": "./cjs/index.js",
"module": "./esm/index.js",
"exports": {
".": {
"node": "./cjs/index.js",
"default": "./esm/index.js"
},
"./openapi": {
"node": "./cjs/openapi/index.js",
"default": "./esm/openapi/index.js"
},
"./package.json": "./package.json"
}
}