forked from bianjieai/irita-sdk-js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
87 lines (87 loc) · 2.37 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
{
"name": "@irita/irita-sdk",
"version": "0.0.1",
"description": "IRITA JavaScript SDK",
"main": "index.js",
"types": "./dist/src",
"files": [
"dist",
"src/**/*.{ts,js}",
"types/**/*.ts",
"index.js",
"LICENSE",
"package.json",
"README.md",
"tsconfig.json",
"yarn.lock"
],
"license": "Apache-2.0",
"keywords": [
"irita",
"irita-sdk",
"irisnet",
"cosmos"
],
"scripts": {
"node": "cd test/scripts/ && sh build.sh && sh start.sh",
"test": "yarn run node && jest -i --config jest.config.js && sh test/scripts/clean.sh",
"check": "gts check",
"clean": "gts clean",
"compile": "tsc -p .",
"build": "rm -rf dist/* && webpack --config build --progress --color --stats detailed && yarn run compile",
"build:prod": "NODE_ENV=production npm run build",
"fix": "gts fix",
"docs": "npx typedoc && docker build -t irita/docs-irita-sdk-js .",
"proto-gen": "sh ./scripts/protocgen.sh"
},
"devDependencies": {
"@babel/core": "^7.7.5",
"@babel/plugin-proposal-class-properties": "^7.8.3",
"@babel/plugin-transform-runtime": "^7.9.0",
"@babel/preset-env": "^7.7.6",
"@babel/preset-typescript": "^7.9.0",
"@types/jest": "^27.4.1",
"@types/mathjs": "^6.0.4",
"@types/node": "^10.0.3",
"@typescript-eslint/eslint-plugin": "^5.17.0",
"@typescript-eslint/parser": "^5.17.0",
"babel-loader": "^8.1.0",
"eslint": "^7.32.0",
"gts": "^3.1.0",
"jest": "^27.5.1",
"ts-jest": "^27.1.3",
"ts-loader": "^6.2.2",
"tslint": "^6.1.0",
"typedoc": "^0.22.13",
"typescript": "^4.0.0",
"webpack": "^5.70.0",
"webpack-bundle-analyzer": "^3.6.1",
"webpack-cli": "^4.9.2",
"webpack-merge": "^4.2.2"
},
"dependencies": {
"@types/ws": "^7.2.2",
"axios": "^0.21.1",
"bech32": "^1.1.3",
"bip32": "^2.0.4",
"bip39": "^3.0.2",
"buffer": "^6.0.3",
"bufferutil": "^4.0.6",
"crypto-browserify": "^3.12.0",
"crypto-js": "^3.1.9-1",
"events": "^3.1.0",
"google-protobuf": "3.13.0",
"grpc-web": "^1.2.1",
"is_js": "^0.9.0",
"isomorphic-ws": "^4.0.1",
"mathjs": "^7.6.0",
"ndjson": "^1.5.0",
"pumpify": "^2.0.1",
"secp256k1": "^3.7.1",
"secure-random": "^1.1.2",
"sha256": "^0.2.0",
"sm-crypto": "tw-bc-group/sm-crypto-js",
"utf-8-validate": "^5.0.9",
"uuid": "^8.3.2"
}
}