-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
41 lines (41 loc) · 951 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
31
32
33
34
35
36
37
38
39
40
41
{
"name": "@nimiq/libswap",
"version": "1.4.2",
"description": "Typed Javascript library to handle atomic swaps.",
"repository": "https://github.com/nimiq/libswap-js",
"author": "Nimiq Network Ltd.",
"private": false,
"module": "./dist/libswap.js",
"exports": {
".": {
"import": "./dist/libswap.js"
}
},
"types": "./dist/libswap.d.ts",
"scripts": {
"build": "tsc",
"fmt": "dprint fmt",
"lint": "oxlint"
},
"files": [
"dist"
],
"license": "Apache-2.0",
"keywords": [
"Nimiq",
"swap"
],
"dependencies": {
"@nimiq/core-web": "^1.6.3",
"@nimiq/electrum-client": "https://github.com/nimiq/electrum-client#build",
"@nimiq/oasis-api": "^1.0.1",
"ethers": "^5.7.2",
"promise.prototype.finally": "^3.1.3"
},
"devDependencies": {
"@types/promise.prototype.finally": "^2.0.4",
"dprint": "^0.47.5",
"oxlint": "^0.10.3",
"typescript": "^5.6.3"
}
}