-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
74 lines (74 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
{
"name": "@avalabs/hw-app-avalanche",
"author": "Zondax AG",
"license": "Apache-2.0",
"version": "0.0.0",
"description": "Node API for Avalanche App (Ledger Nano S/X/S+)",
"main": "./dist/index.js",
"module": "./esm/index.js",
"typings": "./dist/index.d.ts",
"types": "./dist/index.d.ts",
"homepage": "https://github.com/ava-labs/ledger-avalanche-js",
"repository": {
"type": "git",
"url": "git+https://github.com/ava-labs/ledger-avalanche-js.git"
},
"keywords": [
"Zondax",
"Ledger",
"Avalanche",
"Javascript"
],
"scripts": {
"build": "rollup -c && tsc -m commonjs",
"prettier": "prettier --write ./"
},
"bugs": {
"url": "https://github.com/ava-labs/ledger-avalanche-js/issues"
},
"dependencies": {
"@ledgerhq/hw-app-eth": "6.38.2",
"@ledgerhq/hw-transport": "6.31.4",
"bs58": "6.0.0",
"sha3": "2.1.4"
},
"devDependencies": {
"@types/bs58": "^4.0.4",
"@types/ledgerhq__hw-transport": "^4.21.8",
"@typescript-eslint/eslint-plugin": "^8.8.0",
"@typescript-eslint/parser": "^8.8.0",
"bip32": "^4.0.0",
"bip39": "^3.1.0",
"core-js": "^3.38.1",
"crypto-js": "4.2.0",
"esbuild": "0.24.0",
"eslint": "^9.11.1",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-import": "^2.30.0",
"eslint-plugin-jest": "^28.8.3",
"eslint-plugin-prettier": "^5.2.1",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^4.23.0",
"rollup-plugin-dts": "^6.1.1",
"rollup-plugin-esbuild": "^6.1.1",
"semantic-release": "^24.1.2",
"typescript": "^5.6.2"
},
"moduleDirectories": [
"node_modules",
"dist"
],
"postcss": {
"plugins": {
"autoprefixer": {}
}
},
"browserslist": [
"> 1%",
"last 2 versions"
],
"publishConfig": {
"access": "public"
}
}