-
Notifications
You must be signed in to change notification settings - Fork 43
/
Copy pathpackage.json
49 lines (49 loc) · 1.34 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
{
"name": "@sei-js/cosmjs",
"version": "1.0.11",
"description": "TypeScript library for CosmJS interactions on the Sei blockchain",
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/types/index.d.ts",
"sideEffects": false,
"scripts": {
"build": "rimraf dist && yarn build:types && yarn build:cjs && yarn build:esm",
"build:cjs": "tsc --outDir dist/cjs --module commonjs",
"build:esm": "tsc --outDir dist/esm --module esnext",
"build:types": "tsc --project ./tsconfig.declaration.json",
"docs": "typedoc --out docs",
"test": "jest"
},
"homepage": "https://github.com/sei-protocol/sei-js#readme",
"keywords": [
"sei",
"javascript",
"typescript",
"react"
],
"repository": "git@github.com:sei-protocol/sei-js.git",
"license": "MIT",
"publishConfig": {
"access": "public"
},
"dependencies": {
"@cosmjs/amino": "^0.33.1",
"@cosmjs/cosmwasm-stargate": "^0.33.1",
"@cosmjs/crypto": "^0.33.1",
"@cosmjs/encoding": "^0.33.1",
"@cosmjs/math": "^0.33.1",
"@cosmjs/proto-signing": "^0.33.1",
"@cosmjs/stargate": "^0.33.1",
"@cosmjs/tendermint-rpc": "^0.33.1",
"@sei-js/cosmos": "^1.0.5",
"bech32": "^2.0.0",
"elliptic": "^6.5.4",
"moment": "^2.30.1",
"sha.js": "^2.4.11"
},
"devDependencies": {
"@types/elliptic": "^6.4.18",
"@types/jest": "^29.5.5",
"@types/sha.js": "^2.4.4"
}
}