-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
70 lines (70 loc) · 1.76 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
{
"name": "@gnolang/tm2-js-client",
"version": "1.2.2",
"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": {
"@eslint/js": "^9.11.1",
"@types/jest": "^29.5.12",
"@types/long": "^5.0.0",
"@types/node": "^22.7.4",
"@types/ws": "^8.5.11",
"@typescript-eslint/eslint-plugin": "^8.6.0",
"@typescript-eslint/parser": "^8.6.0",
"@typescript-eslint/typescript-estree": "^8.6.0",
"eslint": "^9.10.0",
"eslint-config-prettier": "^9.0.0",
"eslint-plugin-prettier": "5.2.1",
"globals": "^15.9.0",
"jest": "^29.7.0",
"jest-mock-extended": "^3.0.4",
"jest-websocket-mock": "^2.4.0",
"prettier": "^3.3.3",
"ts-jest": "^29.2.2",
"ts-proto": "^2.2.0",
"typescript": "^5.6.2",
"typescript-eslint": "^8.7.0"
},
"dependencies": {
"@cosmjs/amino": "^0.32.4",
"@cosmjs/crypto": "^0.32.4",
"@cosmjs/ledger-amino": "^0.32.4",
"@types/uuid": "^10.0.0",
"axios": "^1.7.2",
"long": "^5.2.3",
"protobufjs": "^7.4.0",
"uuid": "^10.0.0",
"ws": "^8.18.0"
},
"scripts": {
"tsc": "tsc",
"lint": "eslint '**/*.ts' --fix",
"prettier": "prettier --write .",
"build": "yarn tsc",
"test": "jest",
"prepare": "yarn build",
"prepublishOnly": "yarn lint && yarn prettier"
}
}