mirror of
https://github.com/trezor/trezor-suite.git
synced 2026-03-13 10:49:07 +01:00
72 lines
2.1 KiB
JSON
72 lines
2.1 KiB
JSON
{
|
|
"name": "@trezor/utxo-lib",
|
|
"version": "2.4.2-beta.1",
|
|
"author": "Trezor <info@trezor.io>",
|
|
"homepage": "https://github.com/trezor/trezor-suite/tree/develop/packages/utxo-lib",
|
|
"description": "Client-side Bitcoin-like JavaScript library",
|
|
"npmPublishAccess": "public",
|
|
"license": "SEE LICENSE IN LICENSE.md",
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git://github.com/trezor/trezor-suite.git"
|
|
},
|
|
"bugs": {
|
|
"url": "https://github.com/trezor/trezor-suite/issues"
|
|
},
|
|
"keywords": [
|
|
"Trezor",
|
|
"bitcoin",
|
|
"altcoins",
|
|
"utxo",
|
|
"javascript"
|
|
],
|
|
"main": "./src/index.ts",
|
|
"files": [
|
|
"lib/",
|
|
"!**/*.map"
|
|
],
|
|
"publishConfig": {
|
|
"main": "./lib/index.js",
|
|
"types": "lib/index.d.ts",
|
|
"typings": "lib/index.d.ts"
|
|
},
|
|
"scripts": {
|
|
"test:unit": "yarn g:jest --verbose -c jest.config.js",
|
|
"type-check": "yarn g:tsc --build tsconfig.json",
|
|
"build:lib": "yarn g:rimraf lib && yarn g:tsc --build tsconfig.lib.json && ../../scripts/replace-imports.sh ./lib",
|
|
"prepublishOnly": "yarn tsx ../../scripts/prepublishNPM.js",
|
|
"prepublish": "yarn tsx ../../scripts/prepublish.js"
|
|
},
|
|
"dependencies": {
|
|
"@trezor/utils": "workspace:*",
|
|
"bchaddrjs": "^0.5.2",
|
|
"bech32": "^2.0.0",
|
|
"bip66": "^2.0.0",
|
|
"bitcoin-ops": "^1.4.1",
|
|
"blake-hash": "^2.0.0",
|
|
"blakejs": "^1.2.1",
|
|
"bn.js": "^5.2.2",
|
|
"bs58": "^6.0.0",
|
|
"bs58check": "^4.0.0",
|
|
"create-hmac": "^1.1.7",
|
|
"int64-buffer": "^1.1.0",
|
|
"pushdata-bitcoin": "^1.0.1",
|
|
"tiny-secp256k1": "^1.1.6",
|
|
"typeforce": "^1.18.0",
|
|
"varuint-bitcoin": "2.0.0",
|
|
"wif": "^5.0.0"
|
|
},
|
|
"devDependencies": {
|
|
"@trezor/eslint": "workspace:*",
|
|
"@types/bchaddrjs": "^0.4.3",
|
|
"@types/bn.js": "^5.2.0",
|
|
"@types/create-hmac": "^1.1.3",
|
|
"@types/events": "^3.0.3",
|
|
"minimaldata": "^1.0.2",
|
|
"tsx": "^4.20.3"
|
|
},
|
|
"peerDependencies": {
|
|
"tslib": "^2.6.2"
|
|
}
|
|
}
|