forked from irisnet/irishub-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
79 lines (79 loc) · 2.43 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
{
"name": "@irisnet/irishub-sdk",
"version": "3.4.1",
"description": "IRISHub JavaScript SDK",
"main": "index.js",
"typings": "index.ts",
"types": "./dist/src",
"files": [
"dist",
"dist/*",
"index.js",
"LICENSE",
"package.json",
"README.md"
],
"license": "Apache-2.0",
"keywords": [
"irishub",
"irishub-sdk",
"irisnet",
"cosmos"
],
"scripts": {
"node": "cd test/scripts/ && sh build.sh && sh start.sh",
"test": "jest -i --config jest.config.js && sh test/scripts/clean.sh",
"check": "gts check",
"clean": "gts clean",
"build": "rm -rf dist/* && tsc --emitDeclarationOnly && babel --extensions '.ts' src -d dist/src && cp LICENSE dist/ && cp README.md dist/ && cp package.json dist/ && cp -rf src/types/proto-types dist/src/types/proto-types",
"build:windows": "rimraf -rf dist && tsc --emitDeclarationOnly && babel --extensions .ts src -d dist/src && xcopy LICENSE dist\\ && xcopy README.md dist\\ && xcopy package.json dist\\ && robocopy src/types/proto-types dist/src/types/proto-types /e /s /np /nfl /njh /njs /nc /ns",
"fix": "gts fix",
"docs": "npx typedoc && docker build -t irisnet/docs-irishub-sdk-js .",
"proto-gen": "sh ./scripts/protocgen.sh"
},
"devDependencies": {
"@babel/cli": "^7.24.7",
"@babel/core": "^7.23.7",
"@babel/plugin-proposal-class-properties": "^7.14.5",
"@babel/plugin-transform-runtime": "^7.23.7",
"@babel/preset-env": "^7.24.3",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^29.5.11",
"@types/node": "^20.11.30",
"babel-loader": "^9.1.2",
"eslint": "^6.8.0",
"eslint-loader": "^4.0.0",
"gts": "^5.3.1",
"jest": "29.7.0",
"rimraf": "^5.0.7",
"ts-loader": "^9.4.4",
"tslint": "^6.1.0",
"typedoc": "^0.25.7",
"typescript": "^5.4.5"
},
"dependencies": {
"@babel/runtime": "^7.23.8",
"@cosmjs/crypto": "^0.32.3",
"@types/mathjs": "6.0.11",
"@types/ws": "^8.5.10",
"axios": "^1.7.2",
"bcryptjs": "^2.4.3",
"bech32": "^1.1.3",
"buffer": "^6.0.3",
"crypto-js": "^4.0.0",
"events": "^3.1.0",
"google-protobuf": "^3.21.2",
"grpc-web": "^1.2.1",
"is_js": "^0.9.0",
"isomorphic-ws": "^5.0.0",
"mathjs": "12.3.0",
"ndjson": "^2.0.0",
"pumpify": "^2.0.1",
"secure-random": "^1.1.2",
"sha256": "^0.2.0",
"sm-crypto-bj": "0.2.2",
"tslib": "^2.6.2",
"tweetnacl": "^1.0.3",
"uuid": "^9.0.0"
}
}