-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
58 lines (58 loc) · 1.57 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
{
"name": "cudosjs",
"version": "1.3.5",
"author": "",
"description": "JavaScript SDK for Cudos Network",
"license": "ISC",
"main": "build/index.js",
"types": "build/index.d.ts",
"repository": {
"type": "git",
"url": "https://github.com/CudoVentures/cudosjs"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org"
},
"scripts": {
"test": "cd tests && chmod u+x run-tests.sh && ./run-tests.sh",
"build": "rm -rf ./build && tsc",
"build-or-skip": "[ -n \"$SKIP_BUILD\" ] || yarn build",
"pack-web": "yarn build-or-skip && webpack --mode development --config webpack.web.config.js"
},
"files": [
"build/",
"*.md",
"!*.spec.*",
"!**/testdata/"
],
"dependencies": {
"@cosmjs/cosmwasm-stargate": "0.28.6",
"@cosmjs/crypto": "0.28.6",
"@cosmjs/proto-signing": "0.28.6",
"@cosmjs/stargate": "0.28.6",
"@cosmjs/tendermint-rpc": "0.28.6",
"@cosmostation/cosmos-client": "^0.0.4",
"@cosmostation/extension-client": "0.1.11",
"@keplr-wallet/cosmos": "^0.11.23",
"bech32": "^2.0.0",
"bignumber.js": "^9.0.2",
"detect-browser": "^5.3.0",
"yarn": "^1.22.19"
},
"devDependencies": {
"@babel/core": "^7.18.6",
"@babel/preset-env": "^7.18.6",
"@babel/preset-typescript": "^7.18.6",
"@types/jest": "^28.1.3",
"babel-jest": "^28.1.1",
"jest": "^28.1.2",
"ts-jest": "^28.0.5",
"ts-loader": "^9.2.6",
"ts-node": "^8",
"tslib": "^2.4.1",
"typescript": "^4.4.3",
"webpack": "^5.53.0",
"webpack-cli": "^4.8.0"
}
}