-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
77 lines (77 loc) · 1.81 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
71
72
73
74
75
76
77
{
"name": "@zondax/ledger-namada",
"author": "Zondax AG",
"license": "Apache-2.0",
"version": "0.0.0",
"description": "Node API for the Namada App (Ledger Nano S/X/S+)",
"main": "./dist/index.js",
"typings": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/zondax/ledger-namada-js",
"repository": {
"type": "git",
"url": "git+https://github.com/zondax/ledger-namada-js.git"
},
"keywords": [
"Zondax",
"Ledger",
"Javascript",
"Namada"
],
"scripts": {
"build": "tsc",
"lint": "eslint .",
"lint:fix": "eslint --fix .",
"format": "prettier --write ."
},
"bugs": {
"url": "https://github.com/zondax/ledger-namada-js/issues"
},
"dependencies": {
"@ledgerhq/hw-transport": "^6.30.6"
},
"devDependencies": {
"@types/ledgerhq__hw-transport": "^4.21.8",
"@typescript-eslint/eslint-plugin": "^8.4.0",
"@typescript-eslint/parser": "^8.4.0",
"bip32": "^5.0.0-rc.0",
"bip39": "^3.1.0",
"core-js": "^3.38.1",
"crypto-js": "4.2.0",
"eslint": "^9.5.0",
"eslint-config-prettier": "^9.1.0",
"eslint-config-standard-with-typescript": "^43.0.1",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-n": "^17.9.0",
"eslint-plugin-promise": "^6.2.0",
"eslint-plugin-tsdoc": "^0.3.0",
"eslint-plugin-unused-imports": "^4.0.0",
"sort-package-json": "^2.10.0",
"jest": "^29.7.0",
"leb128": "^0.0.5",
"prettier": "^3.3.3",
"secp256k1": "^5.0.0",
"typescript": "^5.5.4"
},
"moduleDirectories": [
"node_modules",
"dist"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"files": [
"dist/*",
"LICENSE",
"yarn.lock"
],
"publishConfig": {
"access": "public"
}
}