-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
52 lines (52 loc) · 1.14 KB
/
Copy pathpackage.json
File metadata and controls
52 lines (52 loc) · 1.14 KB
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
{
"name": "bitgesell-bitcoinjs",
"version": "1.0.6",
"description": "Bitgesell BitcoinJS",
"homepage": "https://bglwallet.io",
"keywords": [
"bitgesell",
"networks",
"bitcoinjs",
"bitcoinjs-lib",
"bip32",
"bip39",
"ecpair",
"secp256k1",
"keccak256",
"blockchain"
],
"bugs": "https://github.com/epexa/bitgesell-bitcoinjs/issues",
"author": "epexa",
"repository": "epexa/bitgesell-bitcoinjs",
"license": "MIT",
"type": "module",
"main": "index.js",
"exports": {
"import": "./index.js",
"require": "./index.cjs"
},
"scripts": {
"prepare": "husky",
"eslint": "eslint",
"build": "npm run eslint && swc index.js -C module.type=commonjs -o index.cjs"
},
"workspaces": [
"examples"
],
"peerDependencies": {
"bitcoinjs-lib": "^6.1.7"
},
"dependencies": {
"@noble/hashes": "^1.7.2",
"bitgesell-networks": "^1.0.0",
"varuint-bitcoin": "^2.0.0"
},
"devDependencies": {
"@swc/cli": "^0.7.2",
"@swc/core": "^1.11.21",
"eslint": "^9.24.0",
"eslint-config-google": "^0.14.0",
"eslint-plugin-n": "^17.17.0",
"husky": "^9.1.7"
}
}