-
Notifications
You must be signed in to change notification settings - Fork 17
/
package.json
66 lines (66 loc) · 1.8 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": "@kava-labs/javascript-sdk",
"version": "14.0.2",
"description": "Supports interaction with the Kava blockchain via a REST api",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"scripts": {
"build": "make clean && make -j1 all && tsc",
"format": "prettier --write \"src/**/*.ts\"",
"postversion": "git push && git push --tags",
"prepare": "npm run build && husky install",
"version": "npm run format && git add -A src",
"check": "tsc -p tsconfig.json"
},
"dependencies": {
"@cosmjs/proto-signing": "^0.32.4",
"@cosmjs/stargate": "^0.32.4",
"@kava-labs/sig": "^0.1.0",
"axios": "^1.6.5",
"bech32": "^1.1.3",
"big.js": "^5.2.2",
"bip39": "^3.0.2",
"crypto-js": "^4.0.0",
"ethers": "^5.6.2",
"long": "^5.2.0",
"protobufjs": "^6.11.2",
"url": "^0.11.0"
},
"devDependencies": {
"@binance-chain/javascript-sdk": "^4.2.2",
"@typescript-eslint/eslint-plugin": "^5.6.0",
"@typescript-eslint/parser": "^5.6.0",
"dotenv": "^14.3.0",
"eslint": "^8.4.1",
"husky": "^7.0.1",
"jest": "^27.3.1",
"lint-staged": "^11.1.1",
"prettier": "2.0.5",
"ts-jest": "^27.0.7",
"ts-proto": "^1.150.0",
"typescript": "^4.9.3"
},
"lint-staged": {
"*.{js,jsx,ts,tsx}": "eslint --cache --fix",
"*.{js,ts,jsx,tsx,css,md,yml,json,html}": "prettier --write"
},
"husky": {
"hooks": {
"pre-commit": "lint-staged"
}
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"repository": {
"type": "git",
"url": "git+https://github.com/Kava-Labs/javascript-sdk.git"
},
"author": "Kava Labs",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/Kava-Labs/javascript-sdk/issues"
},
"homepage": "https://github.com/Kava-Labs/javascript-sdk#readme"
}