@arkade-os/boltz-swap
Version:
A production-ready TypeScript package that brings Boltz submarine-swaps to Arkade.
67 lines • 1.63 kB
JSON
{
"name": "@arkade-os/boltz-swap",
"version": "0.1.2",
"type": "module",
"description": "A production-ready TypeScript package that brings Boltz submarine-swaps to Arkade.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"require": {
"types": "./dist/index.d.ts",
"default": "./dist/index.cjs"
}
}
},
"files": [
"dist"
],
"keywords": [
"arkade",
"boltz",
"swap",
"lightning",
"bitcoin"
],
"author": "Arkade-OS",
"license": "MIT",
"dependencies": {
"@arkade-os/sdk": "^0.2.1",
"@noble/hashes": "^1.3.3",
"@scure/base": "^1.2.6",
"@scure/btc-signer": "^1.2.1",
"light-bolt11-decoder": "^3.2.0"
},
"devDependencies": {
"@eslint/js": "^9.29.0",
"@noble/curves": "^1.9.4",
"@types/node": "^24.0.4",
"@types/ws": "^8.18.1",
"@typescript-eslint/eslint-plugin": "^8.35.0",
"@typescript-eslint/parser": "^8.35.0",
"eslint": "^9.29.0",
"eslint-define-config": "^2.1.0",
"tsup": "^8.0.2",
"typescript": "^5.3.3",
"vite": "^7.0.0",
"vitest": "^3.2.4"
},
"engines": {
"node": ">=22"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "tsup src/index.ts --format esm,cjs --dts --clean",
"test": "vitest run",
"lint": "eslint src --ext .ts",
"release": "bash scripts/release.sh",
"release:dry-run": "bash scripts/release.sh --dry-run",
"release:cleanup": "bash scripts/release.sh --cleanup"
}
}