-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
30 lines (30 loc) · 909 Bytes
/
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
{
"name": "btc_stuff",
"scripts": {
"build": "LANG=en_US.UTF-8 ls *.ts lightning/*.ts | sed 's/.s$/js linguist-generated/' > .gitattributes; tsc",
"format": "shopt -s dotglob; prettier --write *.ts */*.ts *.json",
"lint": "eslint --fix --max-warnings 0 *.ts */*.ts",
"precommit": "npm run format && npm run lint && npm run build"
},
"dependencies": {
"bip32": "^4.0.0",
"bitcoinjs-lib": "^6.1.6",
"bs58": "^6.0.0",
"bs58check": "^4.0.0",
"ecpair": "^2.1.0",
"sha3": "^2.1.4",
"tiny-secp256k1": "^2.2.3",
"zeromq": "^6.1.2"
},
"devDependencies": {
"@eslint/eslintrc": "^3.1.0",
"@eslint/js": "^9.14.0",
"@types/bs58check": "^2.1.2",
"@types/node": "^22.9.0",
"@typescript-eslint/eslint-plugin": "^8.13.0",
"eslint": "^9.14.0",
"eslint-config-prettier": "^9.1.0",
"prettier": "^3.3.3",
"typescript": "^5.6.3"
}
}