forked from gnolang/tm2-js-client
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
66 lines (66 loc) · 1.62 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
{
"name": "@gnolang/tm2-js-client",
"version": "1.2.1",
"description": "Tendermint2 JS / TS Client",
"main": "./bin/index.js",
"repository": {
"type": "git",
"url": "git+https://github.com/gnolang/tm2-js-client.git"
},
"keywords": [
"tm2",
"tendermint2",
"sdk",
"client",
"js"
],
"author": "Milos Zivkovic <[email protected]>",
"license": "Apache-2.0",
"homepage": "https://gno.land/",
"files": [
"bin/**/*"
],
"private": false,
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"devDependencies": {
"@types/jest": "^29.5.12",
"@types/long": "^5.0.0",
"@types/node": "^20.12.5",
"@types/ws": "^8.5.10",
"@typescript-eslint/eslint-plugin": "^5.59.5",
"@typescript-eslint/parser": "^5.59.5",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "5.1.2",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.4",
"jest-websocket-mock": "^2.4.0",
"prettier": "^3.2.2",
"ts-jest": "^29.1.0",
"ts-proto": "^1.172.0",
"typescript": "^5.4.4"
},
"dependencies": {
"@cosmjs/amino": "^0.32.4",
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/ledger-amino": "^0.32.4",
"@types/uuid": "^9.0.4",
"axios": "^1.4.0",
"long": "^5.2.3",
"protobufjs": "^7.2.3",
"uuid": "^9.0.1",
"ws": "^8.16.0"
},
"scripts": {
"tsc": "tsc",
"lint": "eslint '**/*.ts' --fix",
"prettier": "prettier --write .",
"build": "yarn tsc",
"test": "jest",
"prepare": "yarn build",
"prepublishOnly": "yarn lint && yarn prettier"
}
}