forked from chainapsis/keplr-wallet
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 775 Bytes
/
package.json
File metadata and controls
31 lines (31 loc) · 775 Bytes
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
{
"name": "@keplr-wallet/crypto",
"version": "0.12.233",
"main": "build/index.js",
"author": "chainapsis",
"license": "Apache-2.0",
"publishConfig": {
"access": "public"
},
"scripts": {
"clean": "rm -rf node_modules; rm -rf build",
"build": "tsc",
"dev": "tsc -w",
"test": "jest --passWithNoTests",
"lint-test": "eslint \"src/**/*\" && prettier --check \"src/**/*\"",
"lint-fix": "eslint --fix \"src/**/*\" && prettier --write \"src/**/*\""
},
"dependencies": {
"@noble/curves": "^1.4.2",
"@noble/hashes": "^1.4.0",
"bip32": "^2.0.6",
"bip39": "^3.0.3",
"bs58check": "^2.1.2",
"buffer": "^6.0.3",
"ecpair": "^2.1.0"
},
"peerDependencies": {
"bitcoinjs-lib": "^6",
"starknet": "^6"
}
}