-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
51 lines (51 loc) · 1.27 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
{
"name": "@zeriontech/hardware-wallet-connection",
"version": "1.0.12",
"description": "",
"types": "lib/index.d.ts",
"type": "module",
"main": "./lib/index.umd.cjs",
"module": "./lib/index.js",
"files": [
"lib"
],
"exports": {
".": {
"import": "./lib/index.js",
"require": "./lib/index.umd.cjs"
}
},
"scripts": {
"start": "vite build --watch",
"dev": "vite",
"build": "vite build",
"prepare": "npm run build",
"pretest": "tsc --noEmit",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "everdimension",
"license": "MIT",
"devDependencies": {
"@ethersproject/abstract-signer": "^5.7.0",
"@ethersproject/bignumber": "^5.7.0",
"@ethersproject/transactions": "^5.7.0",
"@ledgerhq/devices": "^8.0.4",
"@ledgerhq/hw-app-eth": "^6.33.6",
"@ledgerhq/hw-transport-webusb": "^6.27.16",
"@rollup/plugin-inject": "^5.0.3",
"@types/lodash": "^4.14.199",
"@types/node": "^20.3.3",
"@types/w3c-web-usb": "^1.0.6",
"buffer": "^6.0.3",
"ethers": "^6.7.1",
"process": "^0.11.10",
"typescript": "^5.1.6",
"vite": "^4.4.7",
"vite-plugin-dts": "^3.4.0"
},
"dependencies": {
"lodash": "^4.17.21",
"nanoevents": "^7.0.1"
}
}