-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
42 lines (42 loc) · 1.34 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
{
"name": "@atomicfinance/bitcoin-dlc-provider",
"umdName": "BitcoinDlcProvider",
"version": "3.5.3",
"description": "Bitcoin Abstraction Layer Dlc Provider",
"author": "Atomic Finance <[email protected]>",
"homepage": "",
"license": "ISC",
"main": "dist/index.js",
"scripts": {
"build": "../../node_modules/.bin/tsc --project tsconfig.json",
"prepublishOnly": "yarn run build",
"test": "yarn run build",
"lint": "../../node_modules/.bin/eslint --ignore-path ../../.eslintignore -c ../../.eslintrc.js .",
"lint:fix": "../../node_modules/.bin/eslint --fix --ignore-path ../../.eslintignore -c ../../.eslintrc.js ."
},
"dependencies": {
"@atomicfinance/bitcoin-utils": "3.5.3",
"@atomicfinance/provider": "^3.5.3",
"@atomicfinance/types": "^3.5.3",
"@atomicfinance/utils": "^3.5.3",
"@node-dlc/core": "0.23.6",
"@node-dlc/messaging": "0.23.6",
"@node-lightning/bitcoin": "0.26.1",
"@node-lightning/bufio": "0.26.1",
"@node-lightning/crypto": "0.26.1",
"bignumber.js": "^9.0.1",
"bip-schnorr": "0.6.2",
"bitcoin-networks": "^1.0.0",
"bitcoinjs-lib": "5.2.0",
"lodash": "^4.17.20",
"randombytes": "2.1.0",
"uuid": "^8.3.0"
},
"devDependencies": {
"@types/lodash": "^4.14.160",
"@types/node": "16.10.3"
},
"publishConfig": {
"access": "public"
}
}