This repository has been archived by the owner on Sep 4, 2023. It is now read-only.
forked from nolus-protocol/nolus.js
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
64 lines (64 loc) · 1.97 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
{
"name": "@nolus/nolusjs",
"author": "Nolabs",
"license": "Apache-2.0",
"version": "0.0.77",
"description": "JS library for NodeJS and Web browsers to interact with the Nolus Protocol",
"main": "build/index.js",
"types": "build/index.d.ts",
"files": [
"build/",
"*.md"
],
"scripts": {
"build": "yarn build:module",
"build:module": "tsc",
"lint": "eslint '**/*.{ts,js}'",
"bump": "npm version"
},
"repository": {
"type": "git",
"url": "git+https://github.com/N-Stealth/nolusjs.git"
},
"keywords": [
"nolus-protocol",
"typescript",
"blockchain",
"cosmos",
"tendermint"
],
"bugs": {
"url": "https://github.com/N-Stealth/nolusjs/issues"
},
"homepage": "https://github.com/N-Stealth/nolusjs#readme",
"dependencies": {
"@cosmjs/cosmwasm-stargate": "0.28.4",
"@cosmjs/crypto": "0.28.4",
"@cosmjs/ledger-amino": "0.28.4",
"@cosmjs/proto-signing": "0.28.4",
"@cosmjs/tendermint-rpc": "0.28.4",
"@cosmjs/encoding": "0.28.4",
"@cosmjs/stargate": "0.28.4",
"@keplr-wallet/crypto": "^0.10.5",
"@keplr-wallet/unit": "^0.10.5",
"@ledgerhq/hw-app-cosmos": "^6.27.1",
"@ledgerhq/hw-transport-webhid": "^6.27.1",
"@ledgerhq/hw-transport-webusb": "^6.27.1",
"@types/crypto-js": "^4.0.2",
"@types/elliptic": "^6.4.14",
"@types/ledgerhq__hw-transport": "^4.21.4",
"@types/uuid": "^8.3.1",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.1.1"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^5.27.1",
"@typescript-eslint/parser": "^5.27.1",
"eslint": "^8.16.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^4.0.0",
"prettier": "^2.6.2",
"typescript": "^4.7.2"
}
}