forked from rysiman/lava-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
87 lines (87 loc) · 2.72 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": "@lavanet/lava-sdk",
"version": "0.16.0",
"description": "An SDK for interacting with Lava provider",
"main": "./bin/src/sdk/sdk.js",
"author": "Lava Protocol Inc",
"license": "Apache-2.0",
"scripts": {
"tsc": "tsc",
"build": "yarn tsc && webpack --config webpack.config.js",
"protoc": "./scripts/protoc.sh",
"server": "http-server dist/ -c-1",
"test": "jest ./src",
"tendermintRPC": "node ./bin/examples/tendermintRPC.js",
"run_tendermint_example": "yarn tsc && webpack --config webpack.config.js && node ./bin/examples/tendermintRPC.js",
"run_rest_example": "yarn tsc && webpack --config webpack.config.js && node ./bin/examples/restAPI.js",
"run_jsonrpc_example": "yarn tsc && webpack --config webpack.config.js && node ./bin/examples/jsonRPC.js",
"run_jsonrpc_badge_example": "yarn tsc && webpack --config webpack.config.js && node ./bin/examples/jsonRPC_badge_test.js",
"jsonRPC": "node ./bin/examples/jsonRPC.js",
"restAPI": "node ./bin/examples/restAPI.js",
"prettier": "prettier --check .",
"publish_version": "yarn build; npm publish --access public",
"lint": "eslint '**/*.ts' --fix"
},
"bin": {
"lava-sdk": "bin/main.js"
},
"devDependencies": {
"@types/jest": "^29.2.2",
"http-server": "^14.1.1",
"typescript": "^4.8.4",
"webpack": "^5.74.0",
"webpack-cli": "^4.10.0"
},
"dependencies": {
"@cosmjs/amino": "^0.29.4",
"@cosmjs/crypto": "^0.29.4",
"@cosmjs/encoding": "^0.29.4",
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "^0.29.4",
"@cosmjs/stargate": "0.28.2",
"@grpc/grpc-js": "^1.7.1",
"@improbable-eng/grpc-web": "^0.15.0",
"@improbable-eng/grpc-web-node-http-transport": "^0.15.0",
"@types/google-protobuf": "^3.15.6",
"@typescript-eslint/eslint-plugin": "^5.45.0",
"@typescript-eslint/parser": "^5.45.0",
"chalk": "4.1.2",
"commander": "^9.4.1",
"eslint": "^8.29.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.2.1",
"google-protobuf": "^3.21.2",
"grpc-web": "^1.4.2",
"jest": "^29.3.1",
"long": "^5.2.1",
"prettier": "^2.8.0",
"protobufjs": "^7.1.2",
"rxjs": "^7.5.7",
"ts-jest": "^29.0.3",
"ts-proto": "^1.145.0",
"ts-protoc-gen": "^0.15.0"
},
"types": "./bin/src/sdk/sdk.d.ts",
"directories": {
"example": "examples"
},
"repository": {
"type": "git",
"url": "git+https://github.com/lavanet/lava-sdk.git"
},
"keywords": [
"Access",
"Web3",
"APIs",
"Lava",
"SDK"
],
"bugs": {
"url": "https://github.com/lavanet/lava-sdk/issues"
},
"homepage": "https://github.com/lavanet/lava-sdk#readme",
"engines": {
"node": ">=18",
"npm": ">=6.12.0"
}
}