mirror of
https://github.com/alexgo-io/electrum-client.git
synced 2026-01-12 08:34:26 +08:00
49 lines
1.3 KiB
JSON
49 lines
1.3 KiB
JSON
{
|
|
"name": "@samouraiwallet/electrum-client",
|
|
"version": "1.5.2",
|
|
"engines": {
|
|
"node": ">=18.6.0"
|
|
},
|
|
"description": "Electrum protocol client for Node.js",
|
|
"keywords": ["bitcoin", "electrum", "electrumx"],
|
|
"exports": {
|
|
".": {
|
|
"import": "./dist/index.js",
|
|
"require": "./dist/index.js",
|
|
"types": "./dist/index.d.ts"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"scripts": {
|
|
"test": "vitest run",
|
|
"test:watch": "vitest watch",
|
|
"lint": "biome lint src/ test/",
|
|
"lint:fix": "biome lint --write src/ test/",
|
|
"pretty": "biome format --write src/ test/",
|
|
"typescript": "tsc --noEmit",
|
|
"build:clean": "rm -rf dist",
|
|
"build:esm": "tsc -p tsconfig.build.json",
|
|
"build:cjs": "tsc -p tsconfig.build.cjs.json",
|
|
"build": "npm run build:clean && npm run build:esm && npm run build:cjs",
|
|
"prepack": "npm run build"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "https://github.com/Dojo-Open-Source-Project/electrum-client.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/Dojo-Open-Source-Project/electrum-client/issues"
|
|
},
|
|
"author": "Katana Cryptographic Ltd.",
|
|
"license": "LGPL-3.0",
|
|
"homepage": "https://github.com/Dojo-Open-Source-Project/electrum-client",
|
|
"devDependencies": {
|
|
"@biomejs/biome": "1.9.2",
|
|
"@types/node": "^18.19.53",
|
|
"@vitest/coverage-v8": "^2.1.1",
|
|
"typescript": "^5.7.3",
|
|
"vitest": "^2.1.1"
|
|
}
|
|
}
|