-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
71 lines (71 loc) · 2.17 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
{
"name": "@owallet/background",
"version": "0.9.16",
"main": "build/index.js",
"author": "oraichain labs",
"license": "Apache-2.0",
"private": false,
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rimraf node_modules build",
"build": "tsc --project tsconfig.build.json",
"rebuild":"rimraf build && yarn build",
"dev": "tsc -w --project tsconfig.build.json",
"test": "jest --passWithNoTests",
"lint-test": "eslint \"src/**/*\" && prettier --check \"src/**/*\"",
"lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\""
},
"devDependencies": {
"@ledgerhq/hw-transport-mocker": "^6.27.12",
"@types/aes-js": "^3.1.0",
"@types/big.js": "^6.1.3",
"@types/ethereumjs-abi": "^0.6.3",
"@types/ledgerhq__hw-transport-webusb": "^4.70.1",
"@types/secp256k1": "^4.0.1"
},
"dependencies": {
"@cosmjs/launchpad": "^0.27.1",
"@cosmjs/proto-signing": "^0.29.3",
"@ethereumjs/common": "^2.6.4",
"@ethersproject/wallet": "5.6.0",
"@ethersproject/transactions": "5.6.0",
"@ledgerhq/devices": "^8.0.0",
"@ledgerhq/hw-app-cosmos": "6.27.2",
"@ledgerhq/hw-app-btc": "6.27.1",
"@ledgerhq/hw-app-eth": "5.27.2",
"@ledgerhq/hw-app-trx": "6.27.14",
"@ledgerhq/hw-transport": "6.27.2",
"@ledgerhq/hw-transport-webhid": "=6.27.12",
"@ledgerhq/hw-transport-webusb": "=6.27.12",
"@owallet/common": "^0.9.10",
"@owallet/cosmos": "^0.9.16",
"@owallet/crypto": "^0.9.10",
"@owallet/popup": "^0.9.6",
"@owallet/router": "^0.9.6",
"@owallet/types": "^0.9.12",
"@owallet/unit": "^0.9.12",
"aes-js": "^3.1.2",
"axios": "^0.27.2",
"big-integer": "^1.6.48",
"big.js": "^6.2.0",
"bip32-path": "^0.4.2",
"bip39": "^3.0.4",
"buffer": "^6.0.3",
"delay": "^4.4.0",
"eccrypto-js": "^5.4.0",
"ethereumjs-abi": "^0.6.8",
"ethereumjs-tx": "^2.1.2",
"ethereumjs-util": "^7.1.5",
"joi": "^17.5.0",
"long": "^4.0.0",
"pbkdf2": "^3.1.2",
"proxy-recrypt-js": "1.1.2",
"reflect-metadata": "^0.1.13",
"secp256k1": "^4.0.2",
"secretjs": "^0.17.0",
"tronweb": "3.0.0",
"tsyringe": "^4.5.0"
}
}