-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
87 lines (87 loc) · 2.85 KB
/
Copy pathpackage.json
File metadata and controls
87 lines (87 loc) · 2.85 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
{
"name": "@rsksmart/rsk-swap-sdk",
"version": "1.4.0",
"description": "SDK to integrate with RSK Swap API which is a service that aggregates several providers to obtain RBTC",
"main": "./lib/cjs/index.js",
"module": "./lib/esm/index.js",
"private": false,
"files": [
"./lib/cjs/index.js",
"./lib/esm/index.js",
"./lib/index.d.ts"
],
"types": "./lib/index.d.ts",
"keywords": [
"swap",
"erc20",
"rootstock",
"sdk"
],
"author": "Luisfc68 <luisfc68@gmail.com>",
"homepage": "https://github.com/rsksmart/rsk-swap-sdk#readme",
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/rsksmart/rsk-swap-sdk.git"
},
"scripts": {
"test": "npm run build && NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest --verbose",
"test:coverage": "npm run build && NODE_OPTIONS=\"$NODE_OPTIONS --experimental-vm-modules\" npx jest --coverage --collectCoverageFrom=\"./src/**\"",
"api-sync": "./scripts/api-sync.sh",
"build": "npx tsc --noEmit && npx rollup -c --bundleConfigAsCjs",
"build:clean": "rm -r lib node_modules; npm i && npm run build",
"test:integration": "cd integration-test && npm run test:integration",
"lint": "npx eslint --fix .",
"lint:validation": "npx eslint .",
"prepare": "command -v pre-commit >/dev/null 2>&1 || (pip3 install --user --break-system-packages pre-commit 2>/dev/null || pip3 install pre-commit) && python3 -m pre_commit install --install-hooks"
},
"bugs": {
"url": "https://github.com/rsksmart/rsk-swap-sdk/issues"
},
"dependencies": {
"@noble/hashes": "^1.7.1",
"@rsksmart/bridges-core-sdk": "^0.5.0",
"@vulpemventures/secp256k1-zkp": "^3.2.1",
"bip32": "^5.0.1",
"bip39": "^3.1.0",
"bitcoinjs-lib": "^7.0.1",
"bolt11": "^1.4.1",
"boltz-core": "^3.0.0",
"ecpair": "^3.0.0",
"qrcode": "^1.5.4",
"tiny-secp256k1": "^2.2.3"
},
"devDependencies": {
"@eslint/js": "^9.39.4",
"@rollup/plugin-commonjs": "^29.0.2",
"@rollup/plugin-json": "^6.0.0",
"@rollup/plugin-node-resolve": "^16.0.3",
"@typechain/ethers-v5": "^11.1.2",
"@types/json-bigint": "^1.0.4",
"@types/qrcode": "^1.5.6",
"eslint": "^9.39.4",
"glob": "^13.0.6",
"globals": "^17.4.0",
"json-bigint": "^1.0.0",
"rollup": "^4.60.2",
"rollup-plugin-dts": "^6.4.1",
"rollup-plugin-polyfill-node": "^0.13.0",
"rollup-plugin-string": "^3.0.0",
"rollup-plugin-typescript2": "^0.37.0",
"swagger-typescript-api": "^13.0.23",
"ts-jest": "^29.0.5",
"typechain": "^8.1.1",
"typedoc": "^0.28.19",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^6.0.3",
"typescript-eslint": "^8.58.1"
},
"engines": {
"npm": ">=11.17.0 <12"
},
"allowScripts": {
"secp256k1@4.0.4": true,
"fsevents@2.3.3": true,
"unrs-resolver@1.11.1": true
}
}