Files
electrum-client/package.json
2024-05-11 17:40:55 +02:00

49 lines
1.3 KiB
JSON

{
"name": "@samouraiwallet/electrum-client",
"version": "1.4.0",
"engines": {
"node": ">=14.0.0"
},
"description": "Electrum protocol client for Node.js",
"keywords": [
"bitcoin",
"electrum",
"electrumx"
],
"type": "module",
"exports": "./dist/index.js",
"types": "./dist/index.d.ts",
"scripts": {
"test": "vitest run",
"test:watch": "vitest watch",
"lint": "eslint --ext .ts src/",
"typescript": "tsc --noEmit",
"build:clean": "rm -rf dist",
"build:esm": "tsc -p tsconfig.build.json",
"build": "npm run build:clean && npm run build:esm",
"prepack": "npm run lint && npm run typescript && npm run test",
"prepare": "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": {
"@types/node": "^16.18.32",
"@typescript-eslint/eslint-plugin": "^5.59.7",
"@typescript-eslint/parser": "^5.59.7",
"@vitest/coverage-c8": "^0.31.1",
"eslint": "^8.41.0",
"eslint-plugin-import": "^2.27.5",
"eslint-plugin-unicorn": "^47.0.0",
"typescript": "^5.0.4",
"vitest": "^0.31.1"
}
}