-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
90 lines (90 loc) · 2.21 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
84
85
86
87
88
89
90
{
"name": "secretjs",
"description": "The JavaScript SDK for Secret Network",
"version": "1.15.1",
"license": "MIT",
"author": "SCRT Labs",
"bugs": {
"url": "https://github.com/scrtlabs/secret.js/issues"
},
"repository": {
"url": "https://github.com/scrtlabs/secret.js"
},
"files": [
"dist",
"src",
"package.json",
"package-lock.json",
"README.md",
"LICENSE",
"LICENSE.cosmjs"
],
"types": "dist/index.d.ts",
"main": "dist/index.js",
"browser": "dist/browser.js",
"scripts": {
"build": "rm -rf ./dist && webpack && tsc",
"test": "./test.sh",
"test-ci": "jest --forceExit --runInBand",
"gen-docs": "typedoc",
"postinstall": "patch-package"
},
"dependencies": {
"@cosmjs/amino": "^0.32.4",
"@cosmjs/encoding": "0.32.3",
"@cosmjs/math": "0.32.3",
"@cosmjs/proto-signing": "^0.32.3",
"@noble/hashes": "1.0.0",
"@noble/secp256k1": "1.7.0",
"big-integer": "1.6.51",
"bignumber.js": "9.0.2",
"bip32": "2.0.6",
"bip39": "3.0.4",
"cross-fetch": "3.1.5",
"curve25519-js": "0.0.4",
"google-protobuf": "^3.14.0",
"miscreant": "0.3.2",
"pako": "2.0.4",
"patch-package": "^8.0.0",
"protobufjs": "7.2.5",
"secure-random": "1.1.2"
},
"devDependencies": {
"@babel/preset-typescript": "^7.24.7",
"@confio/relayer": "0.12.0",
"@cosmjs/crypto": "0.32.4",
"@cosmjs/stargate": "0.32.3",
"@types/jest": "29.5.12",
"@types/node": "18.11.2",
"@types/pako": "1.0.3",
"@types/secure-random": "1.1.0",
"jest": "29.7.0",
"node-polyfill-webpack-plugin": "1.1.4",
"prettier": "2.5.1",
"sinon": "14.0.0",
"ts-jest": "29.1.5",
"ts-loader": "9.2.6",
"ts-node": "^10.7.0",
"ts-proto": "1.178.0",
"typedoc": "0.22.11",
"typedoc-plugin-extras": "2.2.3",
"typedoc-plugin-missing-exports": "0.22.6",
"typescript": "4.5.5",
"webpack": "5.76.0",
"webpack-cli": "4.9.2"
},
"browserslist": {
"production": [
"chrome >= 67",
"edge >= 79",
"firefox >= 68",
"opera >= 54",
"safari >= 14"
],
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
}
}