@tetherto/wdk-wallet
Version:
A simple package to manage BIP-32 wallets.
57 lines (56 loc) • 1.34 kB
JSON
{
"name": "@tetherto/wdk-wallet",
"version": "1.0.0-beta.5",
"description": "A simple package to manage BIP-32 wallets.",
"keywords": ["wdk", "wallet", "bip-32"],
"author": "Tether",
"license": "Apache-2.0",
"repository": {
"type": "git",
"url": "git://github.com/tetherto/wdk-wallet.git"
},
"main": "index.js",
"type": "module",
"types": "./types",
"scripts": {
"build:types": "tsc",
"lint": "standard",
"lint:fix": "standard --fix",
"test": "cross-env NODE_OPTIONS=--experimental-vm-modules jest",
"test:coverage": "cross-env NODE_OPTIONS=--experimental-vm-modules jest --coverage"
},
"dependencies": {
"bare-node-runtime": "^1.1.4",
"bip39": "3.1.0"
},
"devDependencies": {
"cross-env": "7.0.3",
"jest": "29.7.0",
"standard": "17.1.2",
"typescript": "5.8.3"
},
"exports": {
".": {
"types": "./types/index.d.ts",
"bare": "./bare.js",
"default": "./index.js"
},
"./protocols": {
"types": "./types/src/protocols/index.d.ts",
"default": "./src/protocols/index.js"
},
"./package": {
"default": "./package.json"
}
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"standard": {
"ignore": [
"bare.js",
"tests/**/*.js"
]
}
}