-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
40 lines (40 loc) · 1.06 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
{
"name": "bitcoin-blended-fee-estimator",
"version": "1.0.0",
"description": "Integration between Lightning Network Daemon (lnd) and mempool.space for Bitcoin fee estimates",
"main": "npm run start",
"scripts": {
"dev": "bun run --hot src/server.tsx",
"start": "bun run src/server.tsx",
"docker:build": "docker build -t bitcoin-blended-fee-estimator .",
"docker:run": "docker run --init -p 3000:3000 bitcoin-blended-fee-estimator",
"fmt": "bunx prettier --write ."
},
"keywords": [
"lnd",
"mempool.space",
"bitcoin",
"blockchain",
"fee estimates"
],
"author": "Tom Kirkpatrick <[email protected]> (https://twitter.com/mrfelton)",
"license": "MIT",
"dependencies": {
"bitcoind-rpc": "0.9.1",
"config": "3.3.9",
"hono": "3.11.12",
"node-cache": "5.1.2",
"pino": "8.18.0"
},
"devDependencies": {
"@types/bun": "1.0.0",
"@types/config": "3.3.3",
"@types/node-cache": "4.2.5",
"pino-pretty": "10.3.1",
"prettier": "3.2.5",
"tap": "18.7.0"
},
"engines": {
"node": ">=14.0.0"
}
}