-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
69 lines (69 loc) · 2.1 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
{
"name": "@nolus/nolusjs",
"author": "Nolabs",
"license": "Apache-2.0",
"version": "2.4.18",
"description": "JS library for NodeJS and Web browsers to interact with the Nolus Protocol",
"engines": {
"node": ">=14.0.0"
},
"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",
"generate-docs": "npx typedoc src/index.ts"
},
"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.32.4",
"@cosmjs/crypto": "0.32.4",
"@cosmjs/encoding": "0.32.4",
"@cosmjs/ledger-amino": "0.32.4",
"@cosmjs/proto-signing": "0.32.4",
"@cosmjs/stargate": "0.32.4",
"@cosmjs/tendermint-rpc": "0.32.4",
"@keplr-wallet/crypto": "0.12.144",
"@keplr-wallet/unit": "0.12.144",
"@ledgerhq/hw-app-cosmos": "^6.30.0",
"@ledgerhq/hw-transport-webhid": "^6.29.0",
"@ledgerhq/hw-transport-webusb": "^6.29.0",
"@types/crypto-js": "^4.2.1",
"@types/elliptic": "^6.4.18",
"@types/ledgerhq__hw-transport": "^4.21.8",
"@types/uuid": "^9.0.7",
"crypto-browserify": "^3.12.0",
"crypto-js": "^4.2.0",
"typedoc": "^0.25.4"
},
"devDependencies": {
"@typescript-eslint/eslint-plugin": "^6.14.0",
"@typescript-eslint/parser": "^6.14.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.0.1",
"prettier": "^3.1.1",
"typescript": "~5.5.3"
}
}